Code:
obj = [
x: 0, y: 0, dx: 0, dy: 0,
Update: function()
' this.x = this.x + this.dx
' this.y = this.y + this.dy
' Can now be written as:
.x = .x + .dx
.y = .y + .dy
endfunc,
GetX: function()
return .x
endfuc
]
An example of the first bullet in the release notes. I got sick of writing "this.".