pork/examples/if.pork

8 lines
76 B
Plaintext

check = { value in
if value then 50
}
main = { in
value = check(100)
}