superlint/.automation/test/groovy/groovy_good_01.groovy
2020-11-06 23:18:48 +01:00

6 lines
184 B
Groovy

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