From WikiChip
Difference between revisions of "Module:comp"

Line 1: Line 1:
 +
local wikichip = require( "Module:wikichip" )
 +
 
function split(str, sep)
 
function split(str, sep)
 
         if sep == nil then
 
         if sep == nil then
Line 23: Line 25:
 
   local s = ''
 
   local s = ''
 
    
 
    
   for key, chip in pairs(list) do
+
   for key, chip_name in pairs(list) do
    s = s .. "<br>\n*" .. chip
+
    local chip = wikichip.new(chip_name)
 
   end
 
   end
 
    
 
    

Revision as of 20:08, 17 May 2017

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

local wikichip = require( "Module:wikichip" )

function split(str, sep)
        if sep == nil then
                sep = "%s"
        end
        local t={} ; i=1
        for str in string.gmatch(str, "([^"..sep.."]+)") do
                t[i] = str
                i = i + 1
        end
        return t
end


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 key, chip_name in pairs(list) do
    local chip = wikichip.new(chip_name)
  end
  
  return s
  
end

return m