factor/library/test/sbuf.factor

13 lines
302 B
Factor
Raw Normal View History

IN: temporary
USING: namespaces sequences strings test ;
2004-09-26 21:34:25 -04:00
[ "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 SBUF" hello world" nth ] unit-test