Skip to content

Instantly share code, notes, and snippets.

@rightfold
Created March 2, 2015 09:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rightfold/5b7b46487e9ed457c564 to your computer and use it in GitHub Desktop.
Save rightfold/5b7b46487e9ed457c564 to your computer and use it in GitHub Desktop.
sub f() {
goto x;
g();
label x;
h();
}
// translates to
function f($continue) {
// how to translate goto?
g(function() {
h($continue);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment