Created
June 3, 2017 02:21
-
-
Save cutecycle/af71cbc22915718de44da421e0d50b11 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
a(state) { | |
state.x = 5; | |
} | |
b(state) { | |
out = state; | |
out.x = 5; | |
return out; | |
} | |
c(state) { | |
state.x = 5; | |
return state; | |
} |
asonge
commented
Jun 3, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment