Files
hakorune/apps/fn-lambda-demo/main.hako

9 lines
231 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// fn{} lambda minimal (value placeholder in P1)
local f = fn(a) {
// 最後の式が返り値
a + 1
}
local con = new ConsoleBox()
// 値として持ち回れるtoStringは関数情報を表示
con.println(f.toString())