Types
		
			
			
				Real/Float type. Equivalent to the 'double' type in C
				
				
					
					Constructors
						
						
						Real(s:Str)
						
						Convert a string to real (floating) number, inefficiently
						
						
					
					
					Methods
							
							
							
							
							
							
							
							==(a:Real, b:Real)
							
							Equality comparison. Using this operator/function is not recommended.
							See http://how-to.wikia.com/wiki/Howto_compare_floating_point_numbers_in_the_C_programming_language .
							
							
							
							
							>=(a:Real, b:Real)
							
							Greater-than-or-equal comparison
							
							
							
							
							
							
							
							Int(r:Real)
							
							Convert Real (floating) number to Int. Floating part is truncated.