Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hello.lua « luaconf « sandbox - github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fcf14081e1ac6f758066bc554ec9927a2b22587f (plain)
1
2
3
4
5
6
module("hello", package.seeall)

-- Declare the functions you want in your module
function hello()
    print "Hello world"
end