https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: d91bac48c07b1deaf1c7da3b895ba0d5422ae747 authored by danne on 13 January 2017, 18:09:22 UTC
Closed branch ml-dng-unified_3c
Tip revision: d91bac4
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