Sha256: 90c61ca7e177cfaa88df18e8a9458e633a40585e21c786ea9da79aacd50cdd9f
Contents?: true
Size: 383 Bytes
Versions: 3
Compression:
Stored size: 383 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 (message='My simple array' size=3): Element 0: Fixnum 5 Element 1: Fixnum 10 Element 2: Fixnum 15 ```
Version data entries
3 entries across 3 versions & 1 rubygems