Skip to content
This repository has been archived by the owner on May 2, 2024. It is now read-only.

Latest commit

 

History

History
26 lines (21 loc) · 274 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 274 Bytes

Build

(cd runtime; make)
hpack
cabal install

Commands

  mylangc build SOURCE.mylang
  mylangc run SOURCE.mylang
  mylangc asm SOURCE.mylang
    Generate GAS file

Examples

x := 2 * 10 / 2;
read(y);
x := x + y;
write(x);
write(42)