CS211 Bootcamp Solutions
Step 6
Prepared by:  Alvin Law (ajl56@cornell.edu)

6.3
public class Test
{
	public static void main (String[] args)
	{
		// hello
		/* hello */
		System.out.println("hello");
	}
}

A function cannot have whitespace in its name.  The second comment must be finished (else the compiler will think the rest of the program is a comment!), and the printing command needs to contain a string with the proper output.  A few minor typing mistakes.