A "high-level" language for the Gameboy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
171 B

  1. import { parse } from "./parser"
  2. export const compile = (source: string): string => {
  3. // 1. Parse
  4. const ast = parse(source)
  5. console.log(ast)
  6. return ""
  7. }