So, I can declare a class in Groovy as:
//groovy-code
class Person {
}
which is the equivalent to write in java something like:
//java-code
public class Person {
}
Just out of curiosity.. what's groovy equivalent to this coded in java:
//java-code
class Person {
}
I mean is there a way to achieve the same that I can achieve in Java by declaring something without an access modifier?