Skip to content

v1.0.0

Latest
Compare
Choose a tag to compare
@BLM16 BLM16 released this 01 Feb 20:16
· 12 commits to master since this release

Initial language commit | 2022-02-01

  • Types & Literals
    • str uses double quotes "like this"
    • dec matches decimal numbers
    • int matches integer numbers
  • Arrithmetic operations
    • * multiplies dec and int
    • / divides dec and int
    • + adds dec and int, concatenates with str and any
    • - subtracts dec and int
  • Builtin Functions
    • WRITE will output its parameters as space separated values to stdout
    • WRITELN will output its parameters as space separated values to stdout and add the native line terminator
  • Comments
    • // ... creates a line comment
    • /* ... */ creates a block comment