Language Basics Ruby

# If the variable and number are equal, the code is executed.
x = 256
if x == 256
  puts "x equals 256"
end
# => x equals 256