Sha256: 18a0168f34bbaf473016e4ed9de8baa879eb3b969817bc8a4643af0789ef497c
Contents?: true
Size: 372 Bytes
Versions: 2
Compression:
Stored size: 372 Bytes
Contents
## # Kernel # # ISO 15.3.1 module Kernel ## # Print human readable object description # # ISO 15.3.1.2.9 # ISO 15.3.1.3.34 def p(*args) i = 0 len = args.size while i < len __printstr__ args[i].inspect __printstr__ "\n" i += 1 end args.__svalue end def printf(*args) __printstr__(sprintf(*args)) nil end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
script_core-0.3.2 | ext/enterprise_script_service/mruby/mrbgems/mruby-print/mrblib/print.rb |
script_core-0.3.0 | ext/enterprise_script_service/mruby/mrbgems/mruby-print/mrblib/print.rb |