rpl.rb/lib/core/logs.rb

15 lines
240 B
Ruby
Raw Normal View History

2022-02-10 14:50:59 +01:00
# frozen_string_literal: true
2021-12-02 15:33:22 +01:00
2022-02-10 14:50:59 +01:00
module Lang
module Core
module_function
# Euler constant
def e
@stack << { type: :numeric,
base: 10,
value: BigMath.E( @precision ) }
2021-12-02 15:33:22 +01:00
end
end
end