5 lines
		
	
	
	
		
			102 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
	
		
			102 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from log import log
 | |
| 
 | |
| def hello(who: str) -> None:
 | |
|     log('Calling logger')
 | |
|     print(f'Hello {who}')
 |