view 1-Ruby/object-all-things-2.rb @ 23:720e9201dd98

Add basic grep
author IBBoard <dev@ibboard.co.uk>
date Sun, 08 Jan 2017 20:29:18 +0000
parents 8d46064c9afc
children
line wrap: on
line source

#! /usr/bin/env ruby

objects = [ 4, 3.14, 'Pi', 'π', false, true ]
objects.each do |obj|
	puts "#{obj} (#{obj.class})"
	obj.methods.each { |method| puts "    #{method}" }
end