Module: Crisp::Functions

Defined in:
lib/crisp/functions.rb,
lib/crisp/functions/core.rb,
lib/crisp/functions/arithmetic.rb

Defined Under Namespace

Classes: Arithmetic, Core

Class Method Summary collapse

Class Method Details

.load(env) ⇒ Object

Load all defined function to the given environment



8
9
10
11
# File 'lib/crisp/functions.rb', line 8

def self.load(env)
  Core.load(env)
  Arithmetic.load(env)
end