6 lines
		
	
	
	
		
			104 B
		
	
	
	
		
			Common Lisp
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			104 B
		
	
	
	
		
			Common Lisp
		
	
	
	
	
	
| (defpackage lib-example
 | |
|   (:use :cl)
 | |
|   (:export :who))
 | |
| (in-package :lib-example)
 | |
| 
 | |
| (defun who () "edef")
 |