Class: Nydp::Builtin::Puts

Inherits:
Object show all
Includes:
Base, Singleton
Defined in:
lib/nydp/builtin/puts.rb

Instance Method Summary collapse

Methods included from Base

#call, #handle_error, ignore_errors, #inspect, #nydp_type, #to_s

Methods included from Helper

#cons, #list, #literal?, #pair?, #sig, #sym, #sym?

Methods included from Converter

#n2r, #r2n, #rubify

Instance Method Details

#builtin_call(*args) ⇒ Object



4
5
6
7
8
# File 'lib/nydp/builtin/puts.rb', line 4

def builtin_call *args
  s = args.map { |a| a.to_s }
  puts s.join ' '
  args.first
end

#nameObject



10
# File 'lib/nydp/builtin/puts.rb', line 10

def name ; "p" ; end