RosettaCodeData/Task/Infinity/Sidef/infinity.sidef

12 lines
229 B
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

var a = 1.5/0 # Inf
say a.is_inf # true
say a.is_pos # true
 
var b = -1.5/0 # -Inf
say b.is_ninf # true
say b.is_neg # true
var inf = Inf
var ninf = -Inf
say (inf == -ninf) # true