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

$x = 5

def print_x
  puts $x
end

print_x
$x = 7
print_x
$x = 3
print_x
