tokei/tests/data/ruby.rb
Aaron Power 3b5aea4b91 Fixed #134, updated dependencies, clarified errors
Fixed an issue where if the ending comment was shorter than the starting
multi line comment the endding comment would be ignored.
2017-07-27 17:00:57 +01:00

21 lines
199 B
Ruby

# 20 lines 9 code 8 comments 3 blanks
x = 3
if x < 2
p = "Smaller"
else
p = "Bigger"
end
=begin
Comments
Comments
Comments
Comments
=end
# testing.
while x > 2 and x < 10
x += 1
end