Open tats-u opened 7 months ago
C# REPL 0.6.6+ba21d409af4dce77f8be07f6a61cdb24cd19bb29
jshell (Java's official REPL) can execute int i = 0; or try to evaluate return 0; or break; without the semicolon. Especially, I do not want to add ; after int i = 0. Without it, CSharpRepl will wait for an additional input unlike jshell.
jshell
int i = 0;
return 0;
break;
;
int i = 0
Version
C# REPL 0.6.6+ba21d409af4dce77f8be07f6a61cdb24cd19bb29
What happened?
jshell
(Java's official REPL) can executeint i = 0;
or try to evaluatereturn 0;
orbreak;
without the semicolon. Especially, I do not want to add;
afterint i = 0
. Without it, CSharpRepl will wait for an additional input unlikejshell
.