@Sid: I just wondered that you know C# that good, but then i stopped wondering. Testing programming languages is a nice thing, but sometimes hard to get into
I for myself keep distance to Objective-C, so much parenthesis, @s and stuff tongue

@HeelX: And that's why C# is better. Could do it from day 0. tongue
No, just kidding, but i have a strong personal preference to C# over Java as i like the concepts built into the language (structs, function pointers / delegates and the standard library is really awesome)

Another snippet in Lua:
Code:
Object = { new = function (self)
  local o = {}
  setmetatable(o, self)
  self.__index = self
  return o
end }



EDIT: @Zapan@work:
One of the most awesome C hacks i've ever seen.


Visit my site: www.masterq32.de