From WikiChip
Difference between revisions of "Module:comp"

Line 7: Line 7:
 
   end
 
   end
 
 
   return "test"
+
   return frame.args.list
 
end
 
end
  
 
return m
 
return m

Revision as of 18:22, 17 May 2017

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

local m = {}

function m.mpu_comp(frame)
	
  if not frame.args.list then
    return 'Error: Missing chip list to compare!'
  end
	
  return frame.args.list
end

return m