All checks were successful
		
		
	
	 The build was successful.
				
			In most (all?) modern OOP languages class members visibility is assumed to be private and programmer has to consciously set it to public or protected. PHP has the different approach what can cause a security flaws in written scripts. AerScript will not follow this way, as it seems to be conceptually broken.
		
			
				
	
	
		
			8 lines
		
	
	
		
			172 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			172 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| final class Program {
 | |
| 	public void main() {
 | |
| 		var_dump(function_exists('dummy_function'));
 | |
| 		var_dump(import('dummy'));
 | |
| 		var_dump(function_exists('dummy_function'));
 | |
| 	}
 | |
| }
 |