Let's assume I have a file named Main.java with the following code:
public class Main {
public static void main(String[] args) {
System.out.println("Hello world");
}
}
Is it put in a specific package, in (maybe?) an unnamed package?
Thanks