factor/library/test/sbuf.factor

16 lines
278 B
Factor

IN: scratchpad
USE: errors
USE: kernel
USE: math
USE: namespaces
USE: strings
USE: test
[ "Hello" ] [
100 <sbuf> "buf" set
"Hello" "buf" get sbuf-append
"buf" get sbuf-clone "buf-clone" set
"World" "buf-clone" get sbuf-append
"buf" get sbuf>str
] unit-test