https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 82a1049008f36af4588ef78cdeca22d63c11b8ff authored by Daniel Fort on 02 November 2017, 17:19:12 UTC
Closed branch unified-600D-StopASIFDMAADC
Tip revision: 82a1049
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