So I understand how to print quotes around something like "Hello" using system.out.println for example:
System.out.print("\"Hello\"");
to get "Hello"
But for the life of me I cannot figure out how to print quotes around a variable. I've tried for example:
String test = "Hello";
System.out.print("\test\, ");
If anyone has tips, I would greatly appreciate it! Thanks!