rpl.rb/lib/core/logs.rb
2021-12-07 16:46:33 +01:00

14 lines
262 B
Ruby

module Rpl
module Core
module_function
# Euler constant
def e( stack, dictionary )
stack << { type: :numeric,
base: 10,
value: BigMath.E( Rpl::Core.precision ) }
[stack, dictionary]
end
end
end