diff options
| -rw-r--r-- | mrblib/kernel.rb | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/mrblib/kernel.rb b/mrblib/kernel.rb index d881a35cf..e769741b7 100644 --- a/mrblib/kernel.rb +++ b/mrblib/kernel.rb @@ -56,29 +56,4 @@ module Kernel yield end 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 |
