View Pit Stop page for race #48 by hobboloydn — Ghost race
View profile for Charlie (hobboloydn)
Official speed | 47.66 wpm (45.07 seconds elapsed during race) |
---|---|
Race Start | April 14, 2025 3:29:36pm UTC |
Race Finish | April 14, 2025 3:30:21pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 94.0% |
Points | 23.83 |
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)()); |