Skip to content

version 7.6

Compare
Choose a tag to compare
@irmen irmen released this 04 Jan 19:56
· 2052 commits to master since this release
  • added in containment check operator, this enables things such as if xx in [1,2,3] ... or if '@' in email_address ...
  • added experimental 'c128' compiler target to create programs for the Commodore-128
  • added a porting guide to the manual for efforts to port the language to other systems
  • added -asmlist argument to also generate a listing file as output
  • added -noreinit argument (experimental) to not create the reinitialization code for global variables. Can make programs smaller, but can also cause problems.
  • returnvalue of diskio.load() (and similar routines) has changed meaning: it's now just the last load address +1 (same as regular kernal's LOAD routine returns)
  • fixed position of @shared in variable declaration for array types
  • be a bit less verbose in similar warnings
  • several code generation optimizations
  • several bugfixes