メモ 9/12
  • enumerated type mixed with another type
  • (*a)(void) vs (*a)() ?
  • I hope this heat does not last so long
    • この暑さ長く続かないといいね
    • 固い
    • もっと砕けた言い方ないかな
    • ~を願う
    • more fluent and with verbal communication
    • not so academic way
  • https://www.makerguides.com/tutorials/
  • in lieu
  • UB undefined behavior
  • IIUC If I understand correctly
  • HWが無いとTrueを返せないケース
  • Keep the function immutable for testing
  • testing a function with subeffects
  • 相関のあるものを共通化しない辛い
  • 相関のないものを共通化すると破綻する
    • #define LEN 10
      int buf[LEN]; 
      int i;
      for (i = 0; i < LEN; i++) {
          Number of loop *must* be commonized with buf
      }