First page Back Continue Last page Overview Graphics
Conditionals and traditional loop constructs are expressions rather than statements, and may also be used as modifiers
drink = if price < 0.90
'small'
elsif price < 1.60
'medium'
else
'large'
hang_up if connection.lost?
ping_server until server.up?