View Pit Stop page for race #649 by afzal_ansari — Ghost race
View profile for Afzal (afzal_ansari)
Official speed | 28.60 wpm (75.10 seconds elapsed during race) |
---|---|
Race Start | July 17, 2025 6:35:53am UTC |
Race Finish | July 17, 2025 6:37:08am UTC |
Outcome | No win (3 of 3) |
Accuracy | 97.0% |
Points | 14.30 |
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)()); |