mirror of
https://github.com/XAMPPRocky/tokei
synced 2024-10-30 07:11:48 +00:00
24 lines
383 B
Text
24 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''')
|
||
|
}
|
||
|
|
||
|
}
|