Gamecamp

From Ghoulwiki
Revision as of 11:42, 23 May 2010 by Ghoulsblade (talk | contribs)
Jump to: navigation, search

http://www.gamecampmunich.de/


lua intro

  • kein int, alles float
  • multiple return
  • todo : unpack
  • for i=1,10 do ... end
  • if (cond) then ... elseif (cond) then ... else ... end
  • for k,v in pairs(mytable) do ... end
  • for k,v in ipairs(mytable) do ... end
  • function bla:blub () ... end  : TODO : implizites self


tables

  • arrays : table.insert(mytable,o)
  • assoc/map : mytable[name] = value
  • set : mytable[o] = true
  • key und value any
  • löschen = assign nil