mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 05:39:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			161 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			161 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
var
 | 
						|
  ch : char;
 | 
						|
begin
 | 
						|
  ch:=#3;
 | 
						|
  case ch of
 | 
						|
   #0..#31 : ;
 | 
						|
  else
 | 
						|
   writeln('bug');
 | 
						|
  end;
 | 
						|
  case ch of
 | 
						|
   #0,#1,#3 : ;
 | 
						|
  else
 | 
						|
   writeln('bug');
 | 
						|
  end;
 | 
						|
end.
 |