3 Commits (trunk)
 

Author SHA1 Message Date
Nixon Enraght-Moony 0b82031e1b Some HIR
```python
x = """Lambda,
    If,
    Set,
    Define,
    Cond,
    Case,
    And,
    Or,
    When,
    Unless,
    Begin,"""

x = x.replace(" ", "").replace(",", "").replace("\r", "")
x = x.splitlines()

print("// ===== Begin Special Forms =====")

for i in x:
    i = i.lower()

    print(f"fn sf_{i}<'a>(&mut self, tree: &[Ast<'a>]) -> Option<Hir<'a>> {{")
    print("todo!()")
    print("}")

print("// ===== End Special Forms =====")
```
2 years ago
Nixon Enraght-Moony c98550907d Basic parser 2 years ago
aDot 32e7a46476 Initial commit 2 years ago