We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ce2eac commit 5df6bceCopy full SHA for 5df6bce
truffle/src/main/java/org/jruby/truffle/nodes/core/KernelNodes.java
@@ -876,7 +876,7 @@ public String block() throws InterruptedException {
876
@TruffleBoundary
877
private static String gets(BufferedReader reader) throws InterruptedException {
878
try {
879
- return reader.readLine();
+ return reader.readLine() + "\n";
880
} catch (IOException e) {
881
throw new RuntimeException(e);
882
}
0 commit comments