Files
not-python/examples/branch.not
Alek Ratzloff 6e1a19f341 Finish up branch implementation
* while and unconditional loops are now supported fully
* break and continue keywords for loop control
* List::thunkify() has been broken into its own structure so it can be
  broken out further as necessary

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2020-11-13 20:00:31 -08:00

10 lines
187 B
Plaintext

num = 10
if num < 10 {
println("The number is pretty small.")
} elif num < 100 {
println("That number is getting pretty big.")
} el {
println("Whoa! That number is huge!")
}