Project

General

Profile

Bug #16192 ยป t.rb

burdettelamar@yahoo.com (Burdette Lamar), 09/30/2019 09:58 PM

 
puts ENV.include?('foo')
ENV.update('foo' => 'value_from_hash') { |name, old, new| 'value_from_block' }
puts ENV['foo'] == 'value_from_hash'
puts ENV['foo'] == 'value_from_block'
    (1-1/1)