aboutsummaryrefslogtreecommitdiff
path: root/examples/if.lyn
blob: 294a49064bb63e593ce71f1bf767d33129a17de4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# `if` macro, think of it as a statement I guess?
# else is used by the `if` command in C, presumably?
if {< i 10} {
	println "a"
} {< i 20} {
	println "b"
} else {
	println "c"
}

# `if` procedure, think of it as expr-if in other languages I guess
# note that all arguments get evaluated here, so if you have a slow function in
# one branch you should probably prefer `if` statements

let x (do-if (< i 10) "a" (< i 20) "b" else "c")