Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 665 Bytes

CHANGELOG.md

File metadata and controls

18 lines (17 loc) · 665 Bytes

1.0.0

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