Created
June 16, 2020 09:42
-
-
Save noam1023/a3b7512355d129ae397f54e4cf0a25d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int foo(double x){ | |
__enter(); | |
// do something with x | |
if(...) goto end; | |
// do more things | |
end: | |
__exit() | |
return 3; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment