void main() { bool hoge = true; print("hoge: $hoge"); // // Dartではtrueのみtrueと扱われるため、これはコンパイルエラー // if (1) { // print("ok"); // } }