Explore Library
Code QuizBeginner

Comment Syntax

Find the broken comment in this snippet.

Codejava
public class Notes {
    public static void main(String[] args) {
        \\ print a greeting
        System.out.println("Hi");
    }
}

What is wrong with the comment?