2026-01-12 19:03:49 +01:00
|
|
|
import stdlib.sl
|
|
|
|
|
|
|
|
|
|
word main
|
2026-03-19 13:29:49 +01:00
|
|
|
"ggggggggh" "ggggggggh"
|
|
|
|
|
strcmp
|
|
|
|
|
puti cr
|
|
|
|
|
|
|
|
|
|
"ggggggggh" "ggggggggd"
|
2026-01-12 19:03:49 +01:00
|
|
|
strcmp
|
|
|
|
|
puti cr
|
|
|
|
|
|
|
|
|
|
"hello world hello world hello " "world hello world hello world"
|
|
|
|
|
strconcat
|
|
|
|
|
2dup
|
|
|
|
|
puts
|
|
|
|
|
free
|
2026-03-20 21:09:44 +01:00
|
|
|
|
|
|
|
|
"hello world hello" "world" splitby
|
|
|
|
|
for puts end
|
|
|
|
|
"hello world hello world" "world" splitby
|
|
|
|
|
for puts end
|
|
|
|
|
"hello world hello world hello" "l" splitby
|
|
|
|
|
for puts end
|
2026-03-25 08:59:35 +01:00
|
|
|
|
|
|
|
|
" f " 2dup 2dup
|
|
|
|
|
124 putc ltrim write_buf 124 putc cr
|
|
|
|
|
124 putc rtrim write_buf 124 putc cr
|
|
|
|
|
124 putc trim write_buf 124 putc cr
|
2026-01-12 19:03:49 +01:00
|
|
|
end
|