Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 535 Bytes

Builtins.md

File metadata and controls

29 lines (24 loc) · 535 Bytes

Builtins

Types

  • ()
  • Bool
  • UInt64

Functions

  • fn print(UInt64): UInt64
  • fn boolToUInt64(Bool): UInt64

Operators

  • UInt64 + UInt64 : UInt64
  • UInt64 - UInt64 : UInt64
  • UInt64 * UInt64 : UInt64
  • UInt64 / UInt64 : UInt64
  • UInt64 % UInt64 : UInt64
  • UInt64 lt UInt64 : Bool
  • UInt64 le UInt64 : Bool
  • UInt64 gt UInt64 : Bool
  • UInt64 ge UInt64 : Bool
  • UInt64 eq UInt64 : Bool
  • Bool eq Bool : Bool
  • UInt64 neq UInt64 : Bool
  • Bool neq Bool : Bool
  • Bool and Bool : Bool
  • Bool or Bool : Bool