mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			5 lines
		
	
	
		
			162 B
		
	
	
	
		
			Clojure
		
	
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
		
			162 B
		
	
	
	
		
			Clojure
		
	
	
	
	
	
(defn rand
 | 
						|
  "Returns a random floating point number between 0 (inclusive) and
 | 
						|
  n (default 1) (exclusive)."
 | 
						|
  ([] (scm* [n] (random-real)))
 | 
						|
  ([n] (* (rand) n))) |