https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 337a5d24721bfeeba7a19cd539c484563aeb8e5f authored by Daniel Fort on 21 December 2016, 03:34:10 UTC
Closed branch raw_video_10bit_12bit_700D_slurp
Tip revision: 337a5d2
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