Module:Sandbox/AmeyaPurao: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 1:
--AmeyaPurao Google Code-in 2019, Introduction to Lua in Wikipedia
--Lua Task 2 - Working with modules
local p = {}
 
function p.hello( frame )
return "Hello, world!"
end
 
return p