René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

defined? [Ruby]

puts "a is not defined" unless defined? a

a=5

puts "a = #{a}"         if     defined? a