removed empty lines

pull/37/head
Igor Chubin 6 years ago committed by GitHub
parent 452105cfbf
commit b8e8f97ffb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -11,10 +11,10 @@ end
# Using .each looks neater and it allows for powerful chaining # Using .each looks neater and it allows for powerful chaining
# of enumerable types. # of enumerable types.
#
# This example maps the array to [2, 4, 6] and prints each element. # This example maps the array to [2, 4, 6] and prints each element.
[1, 2, 3].map { |i| i * 2 }.each { |i| puts i } [1, 2, 3].map { |i| i * 2 }.each { |i| puts i }
#
# Another kind of loop with specified iterations # Another kind of loop with specified iterations
10.times { puts 'test' } 10.times { puts 'test' }
10.times do |n| 10.times do |n|
@ -22,7 +22,6 @@ end
end end
# Conditionals # Conditionals
if 2 * 4 == 8 if 2 * 4 == 8
puts 'thank goodness' puts 'thank goodness'
else else

Loading…
Cancel
Save