Sha256: 2901ecd7cef9998c5f438dda887353b620b3e873eac4040937bc18bc48ce190c
Contents?: true
Size: 380 Bytes
Versions: 1
Compression:
Stored size: 380 Bytes
Contents
#### Simple Array This example shows a simple array of integers. ```show.rb```: ```ruby require 'debug_helper' ary = [5, 10, 15] DebugHelper.show(ary, 'My simple array') ``` The output shows details of the array. ```show.yaml```: ```yaml --- Array (name='My simple array' size=3): Element 0: Fixnum 5 Element 1: Fixnum 10 Element 2: Fixnum 15 ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
debug_helper-1.0.0 | markdown/readme/classes/array/simple/show.md |