https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 0b6a95f33006e32c6100f1e949c0af661acc7306 authored by Daniel Fort on 25 January 2017, 03:43:14 UTC
Closed branch Makefile.cr2hdr_update
Tip revision: 0b6a95f
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