summaryrefslogtreecommitdiffhomepage
path: root/mrblib/kernel.rb
diff options
context:
space:
mode:
authorPaolo Bosetti <[email protected]>2012-06-01 13:41:10 -0700
committerPaolo Bosetti <[email protected]>2012-06-01 13:41:10 -0700
commit1bff6a8f62310a750c0943611c70a7247c492bff (patch)
tree43123469deb2b59eaad04b81b129dda0c1e16ae2 /mrblib/kernel.rb
parent8fafbe7e03b089cdbab5334a63f0f01499f394ca (diff)
parentb2d0f22dee87651bca4e16e287cab61dc303db19 (diff)
downloadmruby-1bff6a8f62310a750c0943611c70a7247c492bff.tar.gz
mruby-1bff6a8f62310a750c0943611c70a7247c492bff.zip
Merge branch 'master' of git://github.com/mruby/mruby into XCode
Diffstat (limited to 'mrblib/kernel.rb')
-rw-r--r--mrblib/kernel.rb35
1 files changed, 0 insertions, 35 deletions
diff --git a/mrblib/kernel.rb b/mrblib/kernel.rb
index de5196482..e769741b7 100644
--- a/mrblib/kernel.rb
+++ b/mrblib/kernel.rb
@@ -56,39 +56,4 @@ module Kernel
yield
end
end
-
- ##
- # Invoke the method with the name +symbol+ on
- # the receiver and pass +args+ and the given
- # block.
- #
- # ISO 15.3.1.3.44
- #def send(symbol, *args, &block)
- ### *** TODO *** ###
- #end
-
- ##
- # Print arguments
- #
- # ISO 15.3.1.2.10
- def print(*args)
- args.each do|x|
- if x.nil?
- __printstr__ "nil"
- else
- __printstr__ x.to_s
- end
- end
- end
-
- ##
- # Print arguments with newline
- #
- # ISO 15.3.1.2.11
- def puts(*args)
- args.each do|x|
- __printstr__ x.to_s
- __printstr__ "\n"
- end
- end
end