tokei/tests/data/xtend.xtend
francesco-dipi 5726c46efd Add Xtend support (#155)
* Add Xtend support

* Add test for xtend files

* Fix typo in test files
2017-10-30 14:42:10 +00:00

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''')
}
}