著作一覧 |
それだけ言いたかった。
ヒント:もちろん、「日本語化」という日本語はない。
合成語を知らんのか?
どうもそうではないようだと思ってたら、日本語じゃないからか。
つまり、「語」だと誤解しているのが問題なのだろう。これは「機能」なのだ。
Perhaps the most straightforward way to define new functions is simply by combining one or more existing functions. For example, a number of library functions that are defined in this way are shown below.
・Decide if a character is a digit:
isDigit :: Char → Bool
isDigit c = c ≧ '0' ∧ c ≦ '9'
引用元は
ジェズイットを見習え |