You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following line result in session termination. char a = 97
The last line in the following results in session termination int i = 12 char z = (char)i
The text was updated successfully, but these errors were encountered:
Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_111 on Linux 3.13.0-49-generic
Welcome to JavaREPL Web Console version 425
java> char c = 0;
Session terminated. Starting new session...
java> char c = '0';
char c = 0
java> char c = '\0';
Session terminated. Starting new session...
The following line result in session termination.
char a = 97
The last line in the following results in session termination
int i = 12
char z = (char)i
The text was updated successfully, but these errors were encountered: