Created
April 28, 2015 07:26
-
-
Save nielsdoorn/36dd3c7e93ab42b7b45b to your computer and use it in GitHub Desktop.
juffenspel
This file contains 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
for i in 1..300 | |
if i % 7 == 0 or i.to_s.include? '7' | |
puts "juf" | |
else | |
puts i | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment