...
As another example, here is how to statically import some of the Math functions:
| Code Block |
|---|
import static java.lang.Math.*
println sin(123.456) * cos(456.789)
// => 0.24733809349262376
|
...
As another example, here is how to statically import some of the Math functions:
| Code Block |
|---|
import static java.lang.Math.*
println sin(123.456) * cos(456.789)
// => 0.24733809349262376
|