View Pit Stop page for race #30 by ali_ahemd2477 — Ghost race
View profile for ali_ahmed (ali_ahemd2477)
Official speed | 16.02 wpm (134.08 seconds elapsed during race) |
---|---|
Race Start | May 8, 2025 6:02:48am UTC |
Race Finish | May 8, 2025 6:05:02am UTC |
Outcome | No win (3 of 3) |
Accuracy | 88.0% |
Points | 8.01 |
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)()); |