|  | @@ -1,6 +1,6 @@
 | 
	
		
			
				|  |  |  word := begin rep.<1..4, syll> end;
 | 
	
		
			
				|  |  |  syll := cons vowel;
 | 
	
		
			
				|  |  | -end := cons vowel final | cons 'é' final | cons 'a' final | 'r' | 'n';
 | 
	
		
			
				|  |  | +end := cons vowel final | cons "é" final | cons "a" final | "r" | "n";
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  begin := vowel | initcons vowel;
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -10,6 +10,6 @@ initcons ::= b c d ch d f g gn h j l m n p qu r s sc t v;
 | 
	
		
			
				|  |  |  vowel := 4: commonvowel | uncommonvowel;
 | 
	
		
			
				|  |  |  commonvowel ::= a i u e é o;
 | 
	
		
			
				|  |  |  uncommonvowel ::= à è ó ò í ú;
 | 
	
		
			
				|  |  | -final := 's' | 6: '';
 | 
	
		
			
				|  |  | +final := "s" | 6: "";
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  puts word;
 |