View Pit Stop page for race #35 by hobboloydn — Ghost race
View profile for Charlie (hobboloydn)
Official speed | 46.49 wpm (46.20 seconds elapsed during race) |
---|---|
Race Start | April 14, 2025 3:12:14pm UTC |
Race Finish | April 14, 2025 3:13:00pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 23.25 |
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)()); |