mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
5726c46efd
* Add Xtend support * Add test for xtend files * Fix typo in test files
24 lines
383 B
Plaintext
24 lines
383 B
Plaintext
// 23 lines 13 code 4 comments 6 blanks
|
|
|
|
class Test {
|
|
|
|
static def void main(String[] args) {
|
|
/*
|
|
* Multiline comment
|
|
*/
|
|
val f = new Foo()
|
|
f.bar() // Not counted
|
|
}
|
|
|
|
}
|
|
|
|
class Foo {
|
|
|
|
def bar() {
|
|
println('string type 1')
|
|
println("string type 2")
|
|
println('''string type 3''')
|
|
}
|
|
|
|
}
|