Created
April 18, 2022 08:29
-
-
Save bicycle1885/cfdd3b57ae9e839d7fa818517e7ede6d 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
function f1() | |
function g() | |
x = 1 | |
return () -> x | |
end | |
x = 0 | |
h = g() | |
return h() | |
end | |
function f2() | |
function g() | |
x = 1 | |
return () -> x | |
end | |
h = g() | |
x = 0 | |
return h() | |
end | |
@show f1() f2() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment