mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			193 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			193 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| uses
 | |
|   uw27294;
 | |
| 
 | |
| var
 | |
|   p : procedure;
 | |
| 
 | |
| procedure test;
 | |
| 
 | |
| begin
 | |
|   p:=@test;
 | |
|   writeln('OK');
 | |
| end;
 | |
| 
 | |
| procedure global;
 | |
| begin
 | |
|   p:=nil;
 | |
|   test;
 | |
|   p();
 | |
| end;
 | |
| 
 | |
| begin
 | |
|   global;
 | |
|   uw27294.global;
 | |
| end.
 | |
| 
 | |
| 
 |