View Pit Stop page for race #25 by e_elashra1 — Ghost race
View profile for Ahmed (e_elashra1)
Official speed | 29.55 wpm (72.69 seconds elapsed during race) |
---|---|
Race Start | May 18, 2025 12:35:29pm UTC |
Race Finish | May 18, 2025 12:36:41pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 91.0% |
Points | 14.78 |
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)()); |