Files
tokei-mirror/tests/data/crystal.cr
notramo c603040c95 Added Crystal language to languages.json (#137)
* Added Crystal language to languages.json

* Added test file for Crystal language
2017-08-19 13:31:20 +01:00

21 lines
217 B
Crystal

# 20 lines 14 code 2 comments 4 blanks
x = 3
if x < 2
p = "Smaller"
else
p = "Bigger"
end
multiline_string = "first line
second line"
heredoc = <<-SOME
hello
SOME
# testing.
while x > 2 && x < 10
x += 1
end