https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: a81ba8530cc5a6ada211c4c4e9bc5bd60f394df4 authored by Daniel Fort on 18 August 2017, 04:26:12 UTC
Closed branch compressed_raw-700D-EOSM
Tip revision: a81ba85
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