prog8/examples/test.p8

10 lines
184 B
Plaintext
Raw Normal View History

%zeropage basicsafe
2021-10-30 13:15:11 +00:00
main {
sub start() {
uword zzz = memory("sdfasdf", 100, 0)
str @shared foobar = "zsdfzsdf"
str @shared foobar2 = sc:"zsdfzsdf"
2022-02-06 03:29:36 +00:00
}
}