Last active
May 11, 2020 10:15
-
-
Save antonicg/82145bf00236e6fc4bf6b52774985ace 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
flow { | |
var x = 0 | |
do { | |
delay(1000) | |
emit(x) | |
x++ | |
} while (x < 1000) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment