Loooong numbers can be added in Groovy!
class GroovyTut {
static void main(String[] args) {
println("Hello World");
// Decimal Accuracy
println("1.9876543210 + 1.9876543210 = "
+ (1.9876543210 + 1.9876543210));
}
}
Loooong numbers can be added in Groovy!
class GroovyTut {
static void main(String[] args) {
println("Hello World");
// Decimal Accuracy
println("1.9876543210 + 1.9876543210 = "
+ (1.9876543210 + 1.9876543210));
}
}