95-733 Internet Technologies
13
Conditions (1)
a = 5
if a > 4
puts "Inside the if"
a = 2
end
puts "a == " + a.to_s(10)
Output
======
Inside the if
a == 2