View Pit Stop page for race #87 by hobboloydn — Ghost race
View profile for Charlie (hobboloydn)
Official speed | 40.42 wpm (53.14 seconds elapsed during race) |
---|---|
Race Start | April 18, 2025 11:44:02am UTC |
Race Finish | April 18, 2025 11:44:55am UTC |
Outcome | No win (3 of 3) |
Accuracy | 96.0% |
Points | 20.21 |
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)()); |