Uses this tool


import java.util.Scanner; /** * @Javadoc comments! * Purpose: tests out a syntax highlighter for Java! */ public class Test { public static void main(String[] args) { // This is a comment! /* A multiline comment! */ System.out.println("Hello, world!"); int ZERO = 0; double ANOTHER_CONSTANT = 3.14; // π String multlineString = """ Here is a multiline string! """; } }