Last active
June 17, 2019 12:10
-
-
Save ardeearam/b082d7d39eaeddf55695f9d55d74422d to your computer and use it in GitHub Desktop.
Ruby Loop
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
int i; | |
for(i = 1; i <= 100; i++) { | |
printf("%d\n", i); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment