mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
c603040c95
* Added Crystal language to languages.json * Added test file for Crystal language
21 lines
217 B
Crystal
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
|
|
|