Skip to content
This repository has been archived by the owner on Jan 5, 2025. It is now read-only.

Commit

Permalink
リーンではなく Lean にする
Browse files Browse the repository at this point in the history
  • Loading branch information
Seasawher committed Oct 21, 2023
1 parent b694ece commit e1ed943
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ arguments, Lean simply writes the function next to its
arguments (e.g. `f x`). Function application is one of the most common operations,
so it pays to keep it concise. Rather than writing -->

通常の数学的表記法でも, 大半のプログラミング言語でも, 関数をその引数に適用する際には括弧を使います(例:`f(x)`)が、リーンは単に関数をその引数の横に書きます (例:`f x`). 関数の使用は最も一般的な操作のひとつであるため, 簡潔であることが重要なのです.`{{#example_out Examples/Intro.lean stringAppendHello}}` を計算するには,
通常の数学的表記法でも, 大半のプログラミング言語でも, 関数をその引数に適用する際には括弧を使います(例:`f(x)`)が、Lean は単に関数をその引数の横に書きます (例:`f x`). 関数の使用は最も一般的な操作のひとつであるため, 簡潔であることが重要なのです.`{{#example_out Examples/Intro.lean stringAppendHello}}` を計算するには,

```lean
#eval String.append("Hello, ", "Lean!")
Expand Down

0 comments on commit e1ed943

Please sign in to comment.