# Strings: split (`txt.spl`), prefix, lowercase (stdlib `txt`).
# Run: ./ilusm release/examples/use-txt.ilu
use txt

parts = txt.spl("one,two,three", ",")
prn(parts)
prn(txt.pfx("ilusm", "ilu"))
prn(txtlw("HELLO"))
