factor/library/test/sbuf.factor

18 lines
334 B
Factor
Raw Normal View History

IN: temporary
2004-09-26 21:34:25 -04:00
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>string
] unit-test
2005-04-02 02:39:33 -05:00
[ CHAR: h ] [ 0 s" hello world" sbuf-nth ] unit-test