Skip to content

Releases: BlizzardLang/Blizzard

v1.0.0

01 Feb 20:16
Compare
Choose a tag to compare

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