Mercurial > repos > other > SevenLanguagesInSevenWeeks
view 1-Ruby/truthiness.rb @ 16:8d46064c9afc
Be a nice Ruby user and follow block convention for do/end vs {}
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Tue, 03 Jan 2017 20:38:45 +0000 |
parents | e0a92558400f |
children |
line wrap: on
line source
#! /usr/bin/env ruby values = [ true, false, 1, 0, -1, 'some string', '', nil ] values.each do |val| text = if val == nil then "nil" else "'#{val}'" end puts "Val #{text} is truthy" if val puts "Val #{text} is falsy" unless val end