problem with read.s string{size}
Posted: Wed Jul 21, 2010 8:47 pm
Hello:
I've problem with this small program, using data, restore, read seems not working with fixed size strings, why?
Thank you
I've problem with this small program, using data, restore, read seems not working with fixed size strings, why?
Code: Select all
Define str.s{100}, str1.s
Restore label1
Read.s str
Read.s str1
Debug str
Debug str1
End
DataSection
label1: Data.s "Hello", "world"
EndDataSection