View Pit Stop page for race #1 by mohamed_beco — Ghost race
View profile for Mohamed (mohamed_beco)
Official speed | 27.03 wpm (79.47 seconds elapsed during race) |
---|---|
Race Start | July 15, 2025 4:20:37pm UTC |
Race Finish | July 15, 2025 4:21:56pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 13.52 |
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)()); |