https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: ef33f4f8629c2d9727272a704c7d05f1d9cd26ac authored by a1ex on 18 April 2016, 19:53:28 UTC
Close branch play_mode
Tip revision: ef33f4f
hello.lua
-- A very simple script.

function main()
    menu.close()
    console.show()
    print "Hello, World!"
    print "Press any key to exit."
    key.wait()
    console.hide()
end

keymenu = menu.new
{
    name = "Hello, World!",
    select = function(this) task.create(main) end,
}

back to top