View Pit Stop page for race #139 by hobboloydn — Ghost race
View profile for Charlie (hobboloydn)
Official speed | 46.81 wpm (45.89 seconds elapsed during race) |
---|---|
Race Start | April 30, 2025 11:53:15am UTC |
Race Finish | April 30, 2025 11:54:01am UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 23.41 |
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)()); |