例如,这需要 4 行,对于这样一个简单的操作来说空间太大了:
if something_is_true
puts 'error'
return
end
这个是单线的,但看起来很尴尬。
if something_is_true; puts 'error'; return; end
我们可以做类似的事情吗
# it would be great if this would work because it is short and readable
puts 'error' and return if something_is_true