lean4-htt/tests/lean/run/108.lean
Leonardo de Moura ffefd8db36 chore: remove weird syntax sugar from macro command
Before this commit,
```
macro term x:term : term => `($x)
```
would generate the notation
```
syntax "term" term : term
```
2020-12-10 08:09:47 -08:00

5 lines
65 B
Text

macro "m" n:ident : command => `(def $n := 1)
m foo
#check foo