http://moonscript.org/compiler/
http://moonscript.org/reference/#function_literals
有點想把它拿到corona上面用用看
只是細節還要再想一下
先note一下一些事情
原本在corona裡面
function scene:createScene(event)
end
也可以寫成這樣
scene.createScene = function(self, event)
end
所以在MoonScript裡面
scene.createScene = (event) =>