https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 72e69133e886266d5b940fce038ed71996d3f13c authored by alex@thinkpad on 16 August 2017, 20:38:36 UTC
mlv_dump: fix compilation after rawc header update
Tip revision: 72e6913
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