mirror of
https://github.com/XAMPPRocky/tokei
synced 2024-10-30 07:11:48 +00:00
5726c46efd
* Add Xtend support * Add test for xtend files * Fix typo in test files
23 lines
383 B
Text
23 lines
383 B
Text
// 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''')
|
|
}
|
|
|
|
}
|