Enum update
- Type aliases:
type Foo = int;
- Enums:
enum Color { red; green; blue; }
- Removed tuples, they were deprecated
object MyObj { }
is now replaced with the keywordclass
- Some clean-ups and naming changes so some thing will likely be broken
type Foo = int;
enum Color { red; green; blue; }
object MyObj { }
is now replaced with the keyword class