View Pit Stop page for race #3 by froggyoxy — Ghost race
View profile for froggy (froggyoxy)
Official speed | 39.86 wpm (53.89 seconds elapsed during race) |
---|---|
Race Start | October 2, 2025 5:28:23pm UTC |
Race Finish | October 2, 2025 5:29:17pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 93.0% |
Points | 19.93 |
Text | #10023 (Length: 179 characters) auto monad = [](auto v) { return [=] { return v; }; }; auto bind = [](auto m) { return [=](auto fvm) { return fvm(m()); }; }; static_assert(bind(monad(2))(monad)() == monad(2)()); |