View difference between Paste ID: kq0KvPTS and PNCD8ikF
SHOW: | | - or go back to the newest paste.
1
dim st as string = !"hello\0 world"
2
dim x as ubyte ptr = @st[0]
3-
do
3+
do until st[x] = asc(!"\0")
4
	print chr(st[x])
5-
	print st[x]
5+
6-
loop until st[x] = chr(!"\0")
6+
loop