Difference between revisions of "Module:Test"

From Minetest Wiki
Jump to navigation Jump to search
(Created page with "local p = {} function p.hello() return "Hello, world!" end return p")
 
(FnControlOption changed the content model of the page Module:Test from "plain text" to "Scribunto")
Tag: content model change
 
(One intermediate revision by the same user not shown)
(No difference)

Latest revision as of 17:46, 7 June 2022

Documentation for this module may be created at Module:Test/doc

local p = {}
 
function p.hello()
    return "Hello, world!"
end
 
return p