Method: RubyToAnsiC#process_not
- Defined in:
- lib/ruby_to_ansi_c.rb
#process_not(exp) ⇒ Object
Nil, currently ruby nil, not C NULL (0).
595 596 597 598 |
# File 'lib/ruby_to_ansi_c.rb', line 595 def process_not(exp) term = process exp.shift return "!(#{term})" end |