Merge pull request #3274 from no382001/issue3262

fix read/1 on non-TTY stdin blocking until newline
This commit is contained in:
Mark Thom
2026-04-18 18:16:53 -06:00
committed by GitHub
3 changed files with 23 additions and 1 deletions

4
tests-pl/issue3262.pl Normal file
View File

@@ -0,0 +1,4 @@
:- initialization(main).
main :-
read(Term),
write(Term).