view 1-Ruby/truthiness.rb @ 11:e0a92558400f

Add some truthiness testing
author IBBoard <dev@ibboard.co.uk>
date Mon, 02 Jan 2017 21:13:00 +0000
parents
children 8d46064c9afc
line wrap: on
line source

#! /usr/bin/env ruby

values = [ true, false, 1, 0, -1, 'some string', '', nil ]

values.each { |val|
	text = if val == nil then "nil" else "'#{val}'" end
	puts "Val #{text} is truthy" if val
	puts "Val #{text} is falsy" unless val
}