rpl.rb/lib/core/trig.rb

15 lines
261 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, dictionary )
2021-12-02 15:33:22 +01:00
stack << { type: :numeric,
base: 10,
value: BigMath.PI( Rpl::Core.precision ) }
[stack, dictionary]
2021-12-02 15:33:22 +01:00
end
end
end