https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: d5951a6ad5401a6b1c6283b9615106c969b549ae authored by alex@thinkpad on 13 August 2016, 13:43:07 UTC
lvinfo: show WB shift values
Tip revision: d5951a6
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