Skip to content

Instantly share code, notes, and snippets.

@billwestfall
Created September 24, 2017 19:43
Show Gist options
  • Save billwestfall/80807258a0c95f9e12aa526994a32f03 to your computer and use it in GitHub Desktop.
Save billwestfall/80807258a0c95f9e12aa526994a32f03 to your computer and use it in GitHub Desktop.
> 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