View Pit Stop page for race #11 by moshrom6 — Ghost race
View profile for moshrom6 (moshrom6)
Official speed | 34.49 wpm (62.28 seconds elapsed during race) |
---|---|
Race Start | June 8, 2025 9:08:43pm UTC |
Race Finish | June 8, 2025 9:09:45pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 93.0% |
Points | 17.24 |
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)()); |