Skip to content

Instantly share code, notes, and snippets.

@probablycorey
Created June 29, 2010 23:54
Show Gist options
  • Select an option

  • Save probablycorey/458011 to your computer and use it in GitHub Desktop.

Select an option

Save probablycorey/458011 to your computer and use it in GitHub Desktop.
// Why I Hate Objective-C
NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:
@"getPopular", @"method",
[NSString stringWithFormat:@"%d", [offset intValue]], @"offset",
nil];
-- Why I like Lua
params = {method = "getPopular", offset = offset}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment