Mercurial > repos > other > SevenLanguagesInSevenWeeks
view 1-Ruby/each.rb @ 11:e0a92558400f
Add some truthiness testing
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Mon, 02 Jan 2017 21:13:00 +0000 |
parents | 369e7cdf3ddf |
children |
line wrap: on
line source
#! /usr/bin/env ruby # Declare an array of strings (like many languages, # single quotes are *not* interpolated) properties = [ 'object oriented', 'duck typed', 'productive', 'fun'] # Call the Each function with a code block. # Name each parameter "property" and output it # "puts" is like printf - it will *put* a *s*tring to the screen properties.each { | property | puts "Ruby is #{property}." } # Note: irb output after properties.each is content of properties