Jose Rodriguez

Results 23 comments of Jose Rodriguez

I've fixed it. Will propose a pull request for this. :) It fixes the issue (pages were not showing up in my blog!). Thanks

I wanted to try the scripts too (at least the examples provided in the README.md). Is this possible?

Hi This is the zxbasic repo (the compiler itself) and have some test already (total 1914 tests and counting). To run tests you can run `tox` in this repository (do...

Are you compiling using -O4? This optimization is too aggressive for this routine (LastK is a _Volatile_ variable and it's not supported yet). If so, compiling with -O3 should work....

Update: This function was successfully tested on ZX 128k. I'll test on the ZX Next and let you know.

I think `myvar += 1` is the good one (as in Python, C, etc...)

ZX Basic was originally GPLv3, but that was a problem because files created by the compiler might contain code from `library-asm/` and `library/` directories respectively. Hence, to allow people to...

Not for the moment (but it could be feasible). The problem is the lack of volunteers in this project. :-(

And why would you want to do that? This will change the syntax of the language. Anyway, remove those lines and also the files in `src/parsetab/tab*`. These files are autogenerated...

Hi, Unfortunately, `SAVE "xxx" DATA s` for arrays is no longer supported and it's technically almost impossible to implement it for arrays of strings. This is because arrays of strings...