10 lines
309 B
Java
10 lines
309 B
Java
{ } //scope
|
|
( ) //for functions
|
|
; //statement terminator
|
|
[ ] //array index
|
|
" //string literal
|
|
' //character literal
|
|
? : //ternary operator
|
|
// //comment prefix (can be escaped by \u unicode escape sequence see below)
|
|
/* */ //comment enclosures (can be escaped by \u unicode escape sequence see below)
|