Hello again everyone.
I was wondering what the symbol " " or notation or whatever it's called means when something like this appears.
int a = 2
int b = 3
int c = 4
system.out.println ( a + " " + b + " " + c);
So how does the computer determine what " " means, and where does it get that from?
