This is an old revision of this page, as edited by Arcayn(talk | contribs) at 16:45, 24 October 2018(Added default name parameter). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.Revision as of 16:45, 24 October 2018 by Arcayn(talk | contribs)(Added default name parameter)
-- 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.nameor"Jimbo"return"Hello from Lua to my friend "..strName..".<br>"endreturnp