This is an old revision of this page, as edited by Arcayn(talk | contribs) at 16:40, 24 October 2018(Made the syntax consistent between the two functions!). 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)(Made the syntax consistent between the two functions!)
-- Arcayn, Google Code In, Introduction to Lua in Wikipedia-- Task 02localp={}p.hello=function(frame)return"Hello, world!"endp.Hi=function(frame)strName=frame.args.namereturn"Hello from Lua to my friend "..strName..".<br>"endreturnp