Mercurial > repos > other > SevenLanguagesInSevenWeeks
view 1-Ruby/truthiness.rb @ 29:9c7af76fdbd0
Print isn't PrinLn, so add some \n characters to the output
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Wed, 06 Sep 2017 18:36:02 +0100 |
parents | 8d46064c9afc |
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