[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

floats



I ignore most messages about floating point stuff because I really
don't understand the subject.  Is this the test that you wanted me to
run?

rascal% kcl
KCl (Kyoto Common Lisp)  June 3, 1987
Loading init.lsp
Finished loading init.lsp

>(defun foo () 2.0S0)
FOO

>(type-of (foo))
SHORT-FLOAT

>(compile 'foo)
End of Pass 1.  
End of Pass 2.  
OPTIMIZE levels: Safety=0 (No runtime error checking), Space=0, Speed=3
FOO

>(type-of (foo))
SHORT-FLOAT

>