33 lines
657 B
Racket
33 lines
657 B
Racket
#lang planet dyoo/whalesong/base
|
|
|
|
(substring "hello world" 0)
|
|
(substring "hello world" 1)
|
|
(substring "hello world" 2)
|
|
(substring "hello world" 3)
|
|
(substring "hello world" 0)
|
|
(substring "hello world" 1 1)
|
|
(substring "hello world" 1 2)
|
|
(substring "hello world" 1 3)
|
|
(substring "hello world" 2 2)
|
|
(substring "hello world" 2 3)
|
|
(substring "hello world" 3 3)
|
|
(substring "hello world" 3 4)
|
|
(substring "hello world" 3 5)
|
|
|
|
|
|
(list->string '())
|
|
(list->string '(#\h #\e #\l #\l #\o))
|
|
|
|
|
|
(string)
|
|
(string #\a #\b #\c)
|
|
|
|
(string-ref "hello" 0)
|
|
(string-ref "hello" 1)
|
|
(string-ref "hello" 2)
|
|
(string-ref "hello" 4)
|
|
|
|
(string->list "xyz")
|
|
(string->list "x")
|
|
(string->list "")
|