- Function definition statement
- Lambda Expression
- If Else Expression
- Let In Expression
fun x = x * x
fun = _\x y. x + y
fun x =
if x == 0
then 1
else fun (x - 1)
fun x =
let y = x
in x + y
/* This is comment */
// Just the way of C-style comment