From WikiChip
Module:comp
Revision as of 18:24, 17 May 2017 by ChipIt (talk | contribs)

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
	
  local list = split(frame.args.list, ',')
  local s
  for chip in list do
    	s = s .. "<br>\n*" .. chip
  end
end

return m