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