Skip to content

Commit

Permalink
タグを使用しない
Browse files Browse the repository at this point in the history
Fixes #1092
  • Loading branch information
Seasawher committed Nov 13, 2024
1 parent 2719d47 commit 44050d2
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 20 deletions.
2 changes: 0 additions & 2 deletions LeanByExample/Reference/Declarative/DeclareSyntaxCat.lean
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/- # declare_syntax_cat
[`🏷️メタプログラミング`](./?search=🏷メタプログラミング)
`declare_syntax_cat` コマンドは、新しい構文カテゴリを宣言するためのコマンドです。構文カテゴリを宣言することで、宣言した構文を再利用可能にして冗長な構文宣言を減らすことができます。
例として、集合の内包表記 `{x : T | P x}` を定義するコードを示します。
Expand Down
2 changes: 0 additions & 2 deletions LeanByExample/Reference/Declarative/Elab.lean
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/- # elab
[`🏷️メタプログラミング`](./?search=🏷メタプログラミング)
`elab` コマンドは、構文に意味を与えるためのコマンドです。特定の構文の解釈を、手続きとして記述するときに使用されます。
以下の例は、証明が終了したときに 🎉 でお祝いしてくれるタクティクを自作する例です。[^zulip]
Expand Down
2 changes: 0 additions & 2 deletions LeanByExample/Reference/Declarative/Infix.lean
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/- # infix
[`🏷️メタプログラミング`](./?search=🏷メタプログラミング)
`infix` は、中置記法を定義するコマンドです。
-/
import Lean --#
Expand Down
2 changes: 0 additions & 2 deletions LeanByExample/Reference/Declarative/Macro.lean
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/- # macro
[`🏷️メタプログラミング`](./?search=🏷メタプログラミング)
`macro` は、その名の通りマクロを定義するための簡便なコマンドです。ただしマクロとは、構文を受け取って新しい構文を返す関数のことです。
-/
import Mathlib.Data.Real.Sqrt
Expand Down
2 changes: 0 additions & 2 deletions LeanByExample/Reference/Declarative/MacroRules.lean
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/- # macro_rules
[`🏷️メタプログラミング`](./?search=🏷メタプログラミング)
`macro_rules` はマクロ展開を定めるための汎用的なコマンドです。
-/

Expand Down
2 changes: 0 additions & 2 deletions LeanByExample/Reference/Declarative/Notation.lean
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/- # notation
[`🏷️メタプログラミング`](./?search=🏷メタプログラミング)
`notation` は、新しい記法を導入するためのコマンドです。
-/

Expand Down
2 changes: 0 additions & 2 deletions LeanByExample/Reference/Declarative/Postfix.lean
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/- # postfix
[`🏷️メタプログラミング`](./?search=🏷メタプログラミング)
`postfix` は、後置記法を定義するコマンドです。
-/
import Lean --#
Expand Down
2 changes: 0 additions & 2 deletions LeanByExample/Reference/Declarative/Prefix.lean
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/- # prefix
[`🏷️メタプログラミング`](./?search=🏷メタプログラミング)
`prefix` は、前置記法を定義するためのコマンドです。
-/
import Lean --#
Expand Down
2 changes: 0 additions & 2 deletions LeanByExample/Reference/Declarative/Syntax.lean
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/- # syntax
[`🏷️メタプログラミング`](./?search=🏷メタプログラミング)
`syntax` コマンドは新しい構文を定義することができます。
-/
import Lean
Expand Down
2 changes: 0 additions & 2 deletions LeanByExample/Reference/Tactic/WithReducible.lean
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/- # with_reducible
[`🏷️メタプログラミング`](./?search=🏷メタプログラミング)
`with_reducible` は、後に続くタクティクの透過度(transparency)を `reducible` に指定して実行します。透過度 `reducible` では、`[reducible]` 属性を持つ定義だけが展開されます。
## 用途
Expand Down

0 comments on commit 44050d2

Please sign in to comment.