mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 05:39:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			140 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			140 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
var
 | 
						|
  c : char;
 | 
						|
begin
 | 
						|
  c:=#91;
 | 
						|
  if c in [#64..#255] then
 | 
						|
   writeln('boe');
 | 
						|
  c:=#32;
 | 
						|
  if c in [#64..#255] then
 | 
						|
   writeln('boe');
 | 
						|
end.
 | 
						|
 |