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
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.
The text was updated successfully, but these errors were encountered:
tats-u
changed the title
Don't require a trailing semicolon for a complete single statement except for an expresion
Don't require a trailing semicolon for a complete single statement other than an expresion
Apr 10, 2024
tats-u
changed the title
Don't require a trailing semicolon for a complete single statement other than an expresion
Don't require a trailing semicolon for a complete single statement other than an expression
Apr 10, 2024
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 unlike
jshell
.The text was updated successfully, but these errors were encountered: