factor/library/test/sbuf.factor

16 lines
388 B
Factor
Raw Normal View History

IN: temporary
2005-04-07 18:54:02 -04:00
USING: kernel namespaces sequences strings test ;
2004-09-26 21:34:25 -04:00
[ "Hello" ] [
100 <sbuf> "buf" set
2005-04-19 20:28:01 -04:00
"Hello" "buf" get nappend
"buf" get sbuf-clone "buf-clone" set
2005-04-19 20:28:01 -04:00
"World" "buf-clone" get nappend
"buf" get sbuf>string
] unit-test
2005-04-02 02:39:33 -05:00
[ CHAR: h ] [ 0 SBUF" hello world" nth ] unit-test
2005-04-07 18:54:02 -04:00
[ CHAR: H ] [
CHAR: H 0 SBUF" hello world" [ set-nth ] keep 0 swap nth
] unit-test