Revision 05f862c902ff1bc3f362df35835315748012dfbf authored by alex@thinkpad on 01 December 2016, 14:48:03 UTC, committed by alex@thinkpad on 01 December 2016, 14:48:03 UTC
1 parent ab98498
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