Content deleted Content added
No edit summary |
No edit summary |
||
Line 4:
local args=frame.args
output = "Bob"
-- check 1
if args[1] == "1" then
Message = "Test1"
Line 10:
Message = args[1]
end
-- check 2
if args[2] == "5" then
output = output.."Test2"
|