Skip to content

Instantly share code, notes, and snippets.

@dpeek
Created February 6, 2013 14:39
Show Gist options
  • Save dpeek/4722931 to your computer and use it in GitHub Desktop.
Save dpeek/4722931 to your computer and use it in GitHub Desktop.
class Main
{
public static function main()
{
trace(haxe.Json.stringify({a:1,b:2,c:3}, function(k,v){
return k == "" ? v : v + 10;
}));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment