Class: Basic101::IntFunction
- Defined in:
- lib/basic101/int_function.rb
Instance Method Summary collapse
Methods inherited from Function
Instance Method Details
#call(runtime, args) ⇒ Object
| 11 12 13 14 15 | # File 'lib/basic101/int_function.rb', line 11 def call(runtime, args) check_args args, [BasicNumeric] value = args.first.eval(runtime) value.to_float.floor end | 
#name ⇒ Object
| 7 8 9 | # File 'lib/basic101/int_function.rb', line 7 def name 'INT' end |