-
-
Save joegiralt/5831176 to your computer and use it in GitHub Desktop.
crap
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
# def math(range) | |
# x = 1..range.max | |
# #x*x = sum | |
# end | |
# sum.each do |x| | |
# x = 1..20 | |
# sum == 0 | |
# end | |
# end | |
def math(num) | |
num * num | |
end | |
math(20).each do |count| | |
# divide by all number between |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment