Class: Basic101::LogFunction
- Defined in:
- lib/basic101/log_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/log_function.rb', line 9 def call(runtime, args) check_args args, [BasicNumeric] arg = args.first arg.eval(runtime).log end |
#name ⇒ Object
5 6 7 |
# File 'lib/basic101/log_function.rb', line 5 def name 'LOG' end |