rpl.rb/lib/core/trig.rb

14 lines
234 B
Ruby
Raw Normal View History

2021-12-02 15:33:22 +01:00
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