diff options
| author | Seba Gamboa <[email protected]> | 2015-10-14 14:37:47 -0300 |
|---|---|---|
| committer | Seba Gamboa <[email protected]> | 2015-10-20 12:16:47 -0300 |
| commit | 5cdcce8dbddd94ecb9503a0a1d47370c4ef97177 (patch) | |
| tree | 07dae36bc4e2762a8d420fbea2e67b4a087ea260 /mrbgems/mruby-print | |
| parent | 84b70886cd9827593810264bf1f068044d5c6986 (diff) | |
| download | mruby-5cdcce8dbddd94ecb9503a0a1d47370c4ef97177.tar.gz mruby-5cdcce8dbddd94ecb9503a0a1d47370c4ef97177.zip | |
Mark core gems with mrbgem tag
Diffstat (limited to 'mrbgems/mruby-print')
| -rw-r--r-- | mrbgems/mruby-print/mrblib/print.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mrbgems/mruby-print/mrblib/print.rb b/mrbgems/mruby-print/mrblib/print.rb index 38a10661b..77a1cb696 100644 --- a/mrbgems/mruby-print/mrblib/print.rb +++ b/mrbgems/mruby-print/mrblib/print.rb @@ -1,11 +1,9 @@ -## -# Kernel -# -# ISO 15.3.1 module Kernel + ## # Invoke method +print+ on STDOUT and passing +*args+ # + # @mrbgem mruby-print # ISO 15.3.1.2.10 def print(*args) i = 0 @@ -19,6 +17,7 @@ module Kernel ## # Invoke method +puts+ on STDOUT and passing +*args*+ # + # @mrbgem mruby-print # ISO 15.3.1.2.11 def puts(*args) i = 0 @@ -36,6 +35,7 @@ module Kernel ## # Print human readable object description # + # @mrbgem mruby-print # ISO 15.3.1.3.34 def p(*args) i = 0 |
