以下のコードの実行結果はどうなりますか? ```ruby def double(number) number * 2 end result = double(7) puts result ```