Template:ClassMatrix

Revision as of 03:03, 18 December 2008 by Editor (talk | contribs) (New page: {{#def:ALL|{{#SearchTitle:{{{1}}} }}}} {{#lua: local H = {}; for id in stdin:gmatch("%w+") do str = string.sub(id,{{{2}}},{{{3}}}); if (H[str] == nil) then H[str] = 1; e...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


{{#lua:

 local H = {};
 for id in stdin:gmatch("%w+") do
   str = string.sub(id,{{{2}}},{{{3}}});
   if (H[str] == nil) then H[str] = 1;
     else H[str] = H[str] + 1;
   end
 end
 for k,v in pairs(H) do
   print(k .. v);
 end

| }}