Notice: Firmware Links Under Maintenance We are currently undergoing maintenance on all firmware links. If any links are inaccessible, please email or contact Tech Support for the firmware. We appreciate your patience during the maintenance, thank you for your understanding.

Difference between revisions of "Module:IPC"

(Created page with "{{Infobox |title = An amazing Infobox |header1 = It works! |label2 = Configured by |data2 = trog |label3 = Web |data3 = [http://trog.qgl.org trog.qgl.org] }}")
 
Line 1: Line 1:
{{Infobox
+
-- For unit tests, see [[Module:Bananas/testcases]]
|title = An amazing Infobox
+
local p = {}
|header1 = It works!
+
 
|label2 = Configured by
+
function p.hello()
|data2 = trog
+
return "Hello, world!"
|label3 = Web
+
end
|data3 = [http://trog.qgl.org trog.qgl.org]
+
 
}}
+
return p

Revision as of 21:02, 20 July 2016

Documentation for this module may be created at Module:IPC/doc

Script error: Lua error: Internal error: The interpreter exited with status 127.

-- For unit tests, see [[Module:Bananas/testcases]]
local p = {}

function p.hello()
	return "Hello, world!"
end

return p