https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 6008fa6d92238a3c18d001329ac6e426557b1fab authored by danne on 22 March 2017, 18:32:17 UTC
latest merges
Tip revision: 6008fa6
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