> How is it possible to print a{ with command:
> system.out.print{ "text { text"}; ?
> Thanks
Your command has 2 errors in it.
1) "system" must start with a capital "S"
2) You used curly brackets where you should have used parentheses
This works: System.out.print( "text { text");
(although I suspect that you really want to use println, not print)
ok, I see.
Whats the difference between print and println?
The command above was just pseudocode though not made clear.
I have another question in the same direction: How to println this sign :"(an apostrophe) . I hoped to get an apostrophe as a result for printing this: '
But no chance, do you know. Thanks so far!