問題3-2
次のコードを実行した結果として正しいものを選択してください。(1つ選択)
$data = false;
if($data){
  print "Hello";
}else{
  print "Bye";
}