Go to file
Alona EM 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 =====")
```
2022-01-01 18:38:43 +00:00
src Some HIR 2022-01-01 18:38:43 +00:00
.gitignore Basic parser 2021-12-29 16:49:49 +00:00
Cargo.toml Basic parser 2021-12-29 16:49:49 +00:00
LICENSE Initial commit 2021-12-29 11:38:32 +00:00
README.md Initial commit 2021-12-29 11:38:32 +00:00
SCHEMES.md Some HIR 2022-01-01 18:38:43 +00:00
basic.scm Some HIR 2022-01-01 18:38:43 +00:00
hello.scm Some HIR 2022-01-01 18:38:43 +00:00

README.md

handball2