superlint/.automation/test/jscpd/groovy_good_01.groovy

7 lines
184 B
Groovy
Raw Normal View History

class Example {
static void main(String[] args) {
File file = new File("E:/Example.txt")
println "The file ${file.absolutePath} has ${file.length()} bytes"
}
}