rpl.rb/lib/core/logs.rb
2022-02-10 14:33:09 +01:00

14 lines
246 B
Ruby

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