mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
3b5aea4b91
Fixed an issue where if the ending comment was shorter than the starting multi line comment the endding comment would be ignored.
21 lines
199 B
Ruby
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
|
|
|