Skip to content

Instantly share code, notes, and snippets.

@orodio
Created February 15, 2015 23:17
Show Gist options
  • Save orodio/d7b4f9377c3237942546 to your computer and use it in GitHub Desktop.
Save orodio/d7b4f9377c3237942546 to your computer and use it in GitHub Desktop.
function sum8(_x, _x2) {
_function: while (true) {
var x = _x,
y = _x2;
if (y > 0) {
_x = x + 1;
_x2 = y - 1;
continue _function;
} else {
if (y < 0) {
_x = x - 1;
_x2 = y + 1;
continue _function;
} else {
return x;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment