#!/usr/bin/ruby
# variable_scope_2.rb

def print_variable
  y = 3
  puts y
end

print_variable
puts y
