mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
	
	
		
			12 lines
		
	
	
		
			190 B
		
	
	
	
		
			CoffeeScript
		
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			190 B
		
	
	
	
		
			CoffeeScript
		
	
	
	
| 
								 | 
							
								# Taken from http://coffeescript.org/
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								# Objects:
							 | 
						||
| 
								 | 
							
								math =
							 | 
						||
| 
								 | 
							
								  root:   Math.sqrt
							 | 
						||
| 
								 | 
							
								  square: square
							 | 
						||
| 
								 | 
							
								  cube:   (x) -> x * square x
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								# Splats:
							 | 
						||
| 
								 | 
							
								race = (winner, runners...) ->
							 | 
						||
| 
								 | 
							
								  print winner, runners
							 |