Skip to content

Commit

Permalink
Macro 型の記述を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
Seasawher committed Nov 17, 2024
1 parent 3b53acc commit e6abf7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions LeanByExample/Reference/Type/Macro.lean
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ example : Macro = (Syntax → MacroM Syntax) := by rfl
### Macro 型からマクロ
項 `m : Macro` を使ってマクロを定義するには、以下のように `[macro]` 属性を使用します。
項 `m : Macro` を使ってマクロを定義するには、以下のように `[macro]` 属性を使用します。これは多くの場合かなり冗長な方法です。
-/
open Lean

Expand All @@ -42,8 +42,8 @@ attribute [macro zeroLitPar] zeroLitExpand
-- マクロ展開されるので、0 に等しいという結果になる
#guard zeroLit = 0

/- ### macro コマンドから Macro 型
/- ### マクロから Macro 型
実際に、`macro` コマンドなどでマクロを定義したとき、それが `Macro` 型の項を生成していることを確かめることができます。`whatsnew` コマンドで、特定のコマンドの実行後に新たに生成された識別子の名前をリストアップすることができます。以下の出力の中に `Lean.Macro` 型の項があるはずです。-/
実際にマクロを定義する際は、[`notation`](#{root}/Reference/Declarative/Notation.md) コマンドや [`macro`](#{root}/Reference/Declarative/Macro.md) コマンドなどを使用するでしょう。こういったコマンドでマクロを定義したとき、それが裏で `Macro` 型の項を生成していることを確かめることができます。特定のコマンドの実行後に新たに生成された識別子の名前をリストアップすることができる、`whatsnew` コマンドを使えば可能です。以下の出力の中に `Lean.Macro` 型の項があるはずです。-/

whatsnew in macro "oneLit" : term => `(1)

0 comments on commit e6abf7b

Please sign in to comment.