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

14 lines
240 B
Ruby

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