mirror of
https://codeberg.org/ProgramSnail/lang_2023.git
synced 2025-12-06 06:58:45 +00:00
12 lines
225 B
Text
12 lines
225 B
Text
decl test-lambdas : -> \unit
|
|
def test-lambdas = {
|
|
let lambda1 = \\x -> x * x
|
|
let lambda2 = \\x -> x..hash:
|
|
let lambda3 = \\x y -> x + y
|
|
|
|
let lambda4 = \\x -> {
|
|
; \io..print: x
|
|
let y = x + x
|
|
return y
|
|
}
|
|
}
|