Difference between revisions of "Module:Sandbox/Komidore64/helloworld"

From Shmups Wiki -- The Digital Library of Shooting Games
Jump to navigation Jump to search
(Created page with "local p = {} function p.helloworld(frame) return "hello world" end return p")
 
 
Line 1: Line 1:
 
local p = {}
 
local p = {}
  
function p.helloworld(frame)
+
function p.main(frame)
 
   return "hello world"
 
   return "hello world"
 
end
 
end
  
 
return p
 
return p

Latest revision as of 20:45, 16 December 2020

Documentation for this module may be created at Module:Sandbox/Komidore64/helloworld/doc

local p = {}

function p.main(frame)
   return "hello world"
end

return p