udhos
udhos
Found a funny feature called string slicing in ZXBasic: There is a notation called slicing for describing substrings, and this can be applied to arbitrary string expressions. `"abcdef"(2 TO 5)="bcde"`...
Found a funny feature called string slicing in ZXBasic: There is a notation called slicing for describing substrings, and this can be applied to arbitrary string expressions. `"abcdef"(2 TO 5)="bcde"`...
Found a funny feature called string slicing in ZXBasic: There is a notation called slicing for describing substrings, and this can be applied to arbitrary string expressions. `"abcdef"(2 TO 5)="bcde"`...
I think INPUT without prompt string should be supported. ``` $ more input.bas 10 input a : print a $ $ gobasic input.bas Error running program: Line 10 : ERROR:...
I think INPUT without prompt string should be supported. ``` $ more input.bas 10 input a : print a $ $ gobasic input.bas Error running program: Line 10 : ERROR:...
gobasic is reporting error for this program. How can I find the root cause? ``` lab@ubu1:~$ gobasic basgo/examples/trek/superstartrek.bas Error constructing interpreter: Error in DEF FN: Expected FN after DEF lab@ubu1:~$...
gobasic should support NEXT without a variable. The NEXT variable should be optional unless for BASIC code collapsing multiple FOR loops into the same NEXT (10 for a=1 to 2:...
gobasic should support WHILE/WEND. Documentation: http://www.antonis.de/qbebooks/gwbasman/whilewend.html ``` $ gobasic while.bas Error running program: Line 20 : Object{Type:error, Value:The variable 'while' doesn't exist} $ $ more while.bas 10 let a=1 20...
gobasic is reporting error for this program. How can I find the root cause? ``` lab@ubu1:~$ gobasic basgo/examples/trek/superstartrek.bas Error constructing interpreter: Error in DEF FN: Expected FN after DEF lab@ubu1:~$...
I'm plotting two time series into a single graph. The YAxis range for the first series is distintict than the YAxis range for the secondary series. I want to plot...