View Pit Stop page for race #16 by d_qwerty — Ghost race
Official speed | 34.47 wpm (62.32 seconds elapsed during race) |
---|---|
Race Start | July 16, 2025 7:22:17am UTC |
Race Finish | July 16, 2025 7:23:19am UTC |
Outcome | No win (3 of 3) |
Accuracy | 97.0% |
Points | 17.23 |
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)()); |