Mercurial > repos > other > SevenLanguagesInSevenWeeks
view 1-Ruby/object-all-things-2.rb @ 11:e0a92558400f
Add some truthiness testing
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Mon, 02 Jan 2017 21:13:00 +0000 |
parents | b8f4577db289 |
children | 8d46064c9afc |
line wrap: on
line source
#! /usr/bin/env ruby objects = [ 4, 3.14, 'Pi', 'π', false, true ] objects.each { |obj| puts "#{obj} (#{obj.class})" obj.methods.each { |method| puts " #{method}" } }