Revision 7ab9b0abb4be53b9518dabace63a0a05470eacb9 authored by alex@thinkpad on 21 April 2017, 21:39:21 UTC, committed by alex@thinkpad on 21 April 2017, 21:39:21 UTC
see http://www.magiclantern.fm/forum/index.php?topic=19300.msg183231#msg183231
1 parent 5b00225
Raw File
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