mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			163 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			163 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* simple hana xs demo library, which can be used by multiple endpoints */
 | 
						|
 | 
						|
function multiply(x, y) {
 | 
						|
    return x * y;
 | 
						|
}
 | 
						|
 | 
						|
function add(x, y) {
 | 
						|
    return x + y;
 | 
						|
} |