View Pit Stop page for race #113 by hobboloydn — Ghost race
View profile for Charlie (hobboloydn)
Official speed | 43.16 wpm (49.77 seconds elapsed during race) |
---|---|
Race Start | April 18, 2025 10:13:44pm UTC |
Race Finish | April 18, 2025 10:14:34pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 21.58 |
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)()); |