Infinity: Difference between revisions

409 bytes added ,  14 years ago
Added PicoLisp
(added Go)
(Added PicoLisp)
Line 457:
put skip list (huge(x), huge(y), huge(z));
</lang>
 
=={{header|PicoLisp}}==
The symbol '[http://software-lab.de/doc/refT.html#T T]' is used to represent
infinite values, e.g. for the length of circular lists, and is greater than any
other value in comparisons. PicoLisp has only very limited floating point
support (scaled bignum arithmetics), but some functions return 'T' for infinite
results.
<lang PicoLisp>(load "@lib/math.l")
 
: (exp 1000.0)
-> T</lang>
 
=={{header|PowerShell}}==
Anonymous user