View Pit Stop page for race #152 by hobboloydn — Ghost race
View profile for Charlie (hobboloydn)
Official speed | 51.74 wpm (41.52 seconds elapsed during race) |
---|---|
Race Start | May 1, 2025 2:02:29pm UTC |
Race Finish | May 1, 2025 2:03:10pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 97.0% |
Points | 25.87 |
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)()); |