mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			272 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			272 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
-- (c) 2009 Aarne Ranta under LGPL
 | 
						|
 | 
						|
interface LexFoods = open Syntax in {
 | 
						|
  oper
 | 
						|
    wine_N : N ;
 | 
						|
    pizza_N : N ;
 | 
						|
    cheese_N : N ;
 | 
						|
    fish_N : N ;
 | 
						|
    fresh_A : A ;
 | 
						|
    warm_A : A ;
 | 
						|
    italian_A : A ;
 | 
						|
    expensive_A : A ;
 | 
						|
    delicious_A : A ;
 | 
						|
    boring_A : A ;
 | 
						|
}
 |