Reputation: 8491
I want to println
System.out.println("*_data<*>" text;");
as *_data<*> text;
and also write this to a file. I can't even get it to write to console because of errors...
Upvotes: 0
Views: 5035
Reputation: 1231
You have a "
after <*>. That is causing the error. If you want to print the literal text
remove the ". If not replace that quote with a + sign and remove the last quote.
Upvotes: 2