using Ast;
public static class Parser {
  public static Expr Parse(string source) {
    return new Int(42);
  }
}