Sha256: cff753aeb90971d3ef5d7bb7da8bd500daaba885618cd4277a4acc4598241fcd

Contents?: true

Size: 412 Bytes

Versions: 1

Compression:

Stored size: 412 Bytes

Contents

# This file demonstrates unless and until statements.

# Examples are from http://www.skorks.com/2009/09/a-wealth-of-ruby-loops-and-iterators/ and 
# http://37signals.com/svn/posts/2699-making-sense-with-rubys-unless 

puts "There's no such person" unless person.present?

unless person.present?
   puts "There's no such person" 
end

i=1
until i > 10
  print "#{i} "
  i+=1
  #redo if i > 10
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nilac-0.0.4.1.4 shark/test_files/unless_until.nila