The compiler doesn't like me putting the period into quotes after the variable which is in quotes:
(userString = "Bob";)
\""+userString+ "\"" ".";
My desired output is:
"Bob".
My question is how do I get the compiler to print that period after "Bob"
? Netbeans gives it an error for some reason.