RosettaCodeData/Task/Naming-conventions/Racket/naming-conventions-2.rkt
2023-07-01 13:44:08 -04:00

7 lines
143 B
Racket

#lang racket
(string-ref "1234" 2)
(string-length "123")
(string-append "12" "34")
;exceptions:
(append (list 1 2) (list 3 4))
(unbox (box 7))