rpl.rb/lib/core/logs.rb

15 lines
246 B
Ruby
Raw Normal View History

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