We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-- マクロ衛生とはなんぞやという例 section macro "const" e:term : term => `(fun x => $e) def x : Nat := 42 def y : Nat := 42 #guard (const x) 0 = 42 #guard (const y) 0 = 42 -- マクロ衛生を保つ機能を無効にする set_option hygiene false macro "const'" e:term : term => `(fun x => $e) -- 引数の値が同じでも、識別子の名前によって値が変わるようになる #guard (const' x) 0 = 0 #guard (const' y) 0 = 42 end
The text was updated successfully, but these errors were encountered:
hygine というオプションを紹介する
8712179
Fixes #558
Seasawher
Successfully merging a pull request may close this issue.
The text was updated successfully, but these errors were encountered: