View Pit Stop page for race #34 by prysp — Ghost race
View profile for ProRick2358Y (prysp)
Official speed | 35.32 wpm (60.82 seconds elapsed during race) |
---|---|
Race Start | July 8, 2025 9:19:28am UTC |
Race Finish | July 8, 2025 9:20:29am UTC |
Outcome | No win (3 of 3) |
Accuracy | 92.0% |
Points | 17.66 |
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)()); |