This is an old revision of this page, as edited by Arcayn(talk | contribs) at 16:40, 24 October 2018(Added the "Hi" code to the module). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.Revision as of 16:40, 24 October 2018 by Arcayn(talk | contribs)(Added the "Hi" code to the module)
-- Arcayn, Google Code In, Introduction to Lua in Wikipedia-- Task 02localp={}functionp.hello(frame)return"Hello, world!"endp.Hi=function(frame)strName=frame.args.namereturn"Hello from Lua to my friend "..strName..".<br>"endreturnp