4 lines
76 B
Perl
4 lines
76 B
Perl
|
:- module( unix, [pipe/2] ).
|
||
|
|
||
|
pipe(Inp, Out) :- open_pipe_stream(Inp, Out).
|