mirror of
https://codeberg.org/ProgramSnail/lang_2023.git
synced 2025-12-05 22:48:42 +00:00
12 lines
235 B
Text
12 lines
235 B
Text
decl test-lambdas : -> \unit
|
|
def test-lambdas = {
|
|
const lambda1 = \\x -> x * x
|
|
const lambda2 = \\x -> x..hash:
|
|
const lambda3 = \\x y -> x + y
|
|
|
|
const lambda4 = \\x -> {
|
|
; \io..print: x
|
|
const y = x + x
|
|
return y
|
|
}
|
|
}
|