rpl.rb/lib/core/logs.rb

15 lines
262 B
Ruby
Raw Normal View History

2021-12-02 15:33:22 +01:00
module Rpl
module Core
module_function
# Euler constant
def e( stack, dictionary )
2021-12-02 15:33:22 +01:00
stack << { type: :numeric,
base: 10,
value: BigMath.E( Rpl::Core.precision ) }
[stack, dictionary]
2021-12-02 15:33:22 +01:00
end
end
end