View Pit Stop page for race #288 by maerih — Ghost race
View profile for maerih (maerih)
Official speed | 34.97 wpm (61.42 seconds elapsed during race) |
---|---|
Race Start | June 27, 2025 4:43:49am UTC |
Race Finish | June 27, 2025 4:44:50am UTC |
Outcome | No win (2 of 3) |
Accuracy | 91.0% |
Points | 17.49 |
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)()); |