mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			195 B
		
	
	
	
		
			Scheme
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			195 B
		
	
	
	
		
			Scheme
		
	
	
	
	
	
(define-library (libs basic)
 | 
						|
    (export list2 x)
 | 
						|
    (begin
 | 
						|
        (define (list2 . objs)  objs)
 | 
						|
        (define x 'libs-basic)
 | 
						|
        (define not-exported 'should-not-be-exported)
 | 
						|
        ))
 |