Signed-off-by: Ron Yorston <rmy@pobox.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
		
			
				
	
	
		
			10 lines
		
	
	
		
			124 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			124 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
i=0
 | 
						|
while test $i != 2; do
 | 
						|
    f() { echo First $i; }
 | 
						|
    f
 | 
						|
    f() { echo Second $i; }
 | 
						|
    f
 | 
						|
    : $((i++))
 | 
						|
done
 | 
						|
echo Done
 |