
断食体験記~2日目(準備食)~
こんにちは。ぽこです。今回は、実際にぽこが断食をしてみたので、やった方法と、どのような感じだったかを記録したいと思います。今回私が行ったのは、この記事で紹介している3日断食です。こちらの記事に、どのような食事をとるべきかが書いてあるので、参...
for i in range(1, 201): string = "" if i % 3 == 0: string += "Fizz" if i % 5 == 0: string += "Buzz" if i % 7 == 0: string += "Puzz" if not string: string = i print(string)
$ flutter doctorDoctor summary (to see all details, run flutter doctor -v):[✓] Flutter (Channel stable, v1.12.13+hotfix.9, on Mac OS X 10.15.4 19E266, locale ja-JP) [✓] Android toolchain - develop for Android devices (Android SDK version 29.0.3)[✓] Xcode - develop for iOS and macOS (Xcode 11.4)[✓] Android Studio (version 3.6)[✓] Connected device (1 available)• No issues found!
$ vi ~/.bash_profile
void misbehave(){ try{ dynamic foo = true; print(foo++); //runtime error }catch(e){ print('misbehave() partially handled ${e.runtimeType}.'); rethrow;//呼び出しもとで例外を見れるようにする }}void main(){ print('start'); try{ misbehave(); }catch(e){ print('main() finished handling ${e.runtimeType}.'); }}
void main(){ //..年齢計算用の良いコード例 int age1 = 50; checkAge(age1); //..年齢計算用の良いコード例 //..年齢計算用の悪い(112歳以上)コード例 int age2 = 150; checkAge(age2); //..年齢計算用の悪い(112歳以上)コード例}void checkAge(int age){ assert(age < 112, "bad age ${age}");}