d537087088
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
13 lines
234 B
Ruby
13 lines
234 B
Ruby
module Rpl
|
|
module Core
|
|
module_function
|
|
|
|
# pi constant
|
|
def pi( stack )
|
|
stack << { type: :numeric,
|
|
base: 10,
|
|
value: BigMath.PI( Rpl::Core.precision ) }
|
|
stack
|
|
end
|
|
end
|
|
end
|