Method: RubyToAnsiC#process_return

Defined in:
lib/ruby_to_ansi_c.rb

#process_return(exp) ⇒ Object

Return statement. Nothing exciting here



621
622
623
# File 'lib/ruby_to_ansi_c.rb', line 621

def process_return(exp)
  return "return #{process exp.shift}"
end