View Pit Stop page for race #86 by hobboloydn — Ghost race
View profile for Charlie (hobboloydn)
Official speed | 37.98 wpm (56.56 seconds elapsed during race) |
---|---|
Race Start | April 18, 2025 11:42:46am UTC |
Race Finish | April 18, 2025 11:43:43am UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 18.99 |
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)()); |