factor/extra/math/constants/constants.factor

10 lines
368 B
Factor
Raw Normal View History

2007-09-20 18:09:08 -04:00
! Copyright (C) 2004, 2005 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
IN: math.constants
: e ( -- e ) 2.7182818284590452354 ; inline
2008-02-06 20:23:39 -05:00
: euler ( -- gamma ) 0.57721566490153286060 ; inline
2008-01-24 18:12:39 -05:00
: phi ( -- phi ) 1.61803398874989484820 ; inline
: pi ( -- pi ) 3.14159265358979323846 ; inline
2007-09-20 18:09:08 -04:00
: epsilon ( -- epsilon ) 2.2204460492503131e-16 ; inline