dbuchwald / 6502

DB6502: 65C02 based computer inspired by BE6502
MIT License
144 stars 29 forks source link

Add escaping to strings in list operation in BASIC #48

Open dbuchwald opened 4 years ago

dbuchwald commented 4 years ago

Currently BASIC lists strings with special characters in not so nice way:

New program will be stored at location 0x331e
OS/1 Basic>100 print "Hello \"World\" \\!"
OS/1 Basic>run
Hello "World" \!
OS/1 Basic>list
100 PRINT "Hello "World" \!"
OS/1 Basic>