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