Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -876,7 +876,7 @@ public String block() throws InterruptedException {
@TruffleBoundary
private static String gets(BufferedReader reader) throws InterruptedException {
try {
return reader.readLine();
return reader.readLine() + "\n";
} catch (IOException e) {
throw new RuntimeException(e);
}

0 comments on commit 5df6bce

Please sign in to comment.