lint/.automation/test/java/java_bad_1.java

9 lines
169 B
Java
Raw Normal View History

class java_bad_1 // first letter of classname is not capitalized
2020-08-05 13:35:14 -05:00
{
2020-08-05 13:35:14 -05:00
public static void main(String args[])
{
2020-08-06 08:29:15 -05:00
System.out.println("Hello, World");
2020-08-05 13:35:14 -05:00
}
}