This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/swi/library/unix.pl

4 lines
76 B
Prolog

:- module( unix, [pipe/2] ).
pipe(Inp, Out) :- open_pipe_stream(Inp, Out).