The following code relies on this property
```lean
for uid in scope.varUIds, x in xs do
sectionFVars := sectionFVars.insert uid x
```
8 lines
101 B
Text
8 lines
101 B
Text
variable {α} [ToString α] (n : Nat)
|
||
|
||
local macro "foo" : term => `(n)
|
||
|
||
def f :=
|
||
foo
|
||
|
||
#check f 10
|