I think it would really help shorten expressions if the `else` clause inside an `if` could be omitted, returning `.` by default. For example the following two programs would be considered equivalent: ``` if .foo then .foo = "bar" else . end ``` ``` if .foo then .foo = "bar" end ```