Created
September 24, 2017 19:43
-
-
Save billwestfall/80807258a0c95f9e12aa526994a32f03 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
> i <- 2 | |
> repeat {if (i > 24) break else {print(i); Sys.sleep(1); i <- i + 2;}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment