Chandra Mouli

Greenhorn
+ Follow
since Dec 22, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Chandra Mouli

Hi,
I wrote a program like the one below.
public class Test {
private static void main(String args[]) {
System.out.println("Hello");
}
}
Instead of declaring main method as public, I declared it as private.
But still the program was running without any error and printed "Hello".
Can anyone please tell what is actually happening?
Thankx in advance...
20 years ago