https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 32c5e67ae49ed4f2c1b3c657779623a9e6dc57eb authored by Daniel Fort on 13 July 2017, 04:53:12 UTC
Closed branch recovery-EOSM2
Tip revision: 32c5e67
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!",
    help   = "Prints 'Hello World' on the console",
    select = function(this) task.create(main) end,
}

back to top