https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: e38c20bb4137f9abb82def2d44a04330240d8d01 authored by Daniel Fort on 10 September 2017, 17:40:27 UTC
Closed branch crop_rec_4k_mlv_snd
Tip revision: e38c20b
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