Class: Basic101::ExpFunction
- Defined in:
- lib/basic101/exp_function.rb
Instance Method Summary collapse
Methods inherited from Function
Instance Method Details
#call(runtime, args) ⇒ Object
9 10 11 12 13 |
# File 'lib/basic101/exp_function.rb', line 9 def call(runtime, args) check_args args, [BasicNumeric] value = args.first.eval(runtime) value.exp end |
#name ⇒ Object
5 6 7 |
# File 'lib/basic101/exp_function.rb', line 5 def name 'EXP' end |