https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 7553f124adc91231e6463433b54fb0b6b88ba95e authored by alex@thinkpad on 02 February 2018, 20:56:20 UTC
focus.c: fix possible overflow when computing hyperfocal (corner case)
Tip revision: 7553f12
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