Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
c$ = "z"
a$ = "xxx" ' 3-buyte string
b$ = "yy" ' 2-byte string
c$ = "z" ' 1-byte string
LSET a$ = "aa"
LSET b$ = "bb"
LSET c$ = "cc"
PRINT "a = ["; a$; "]"
PRINT "b = ["; b$; "]"
PRINT "c = ["; c$; "]"
end
a = [aa ]
b = [bb]
c = [c]
c$ = "cc"
LSET c$ = "cc"