View Pit Stop page for race #73 by porfiriomarquez — Ghost race
View profile for porfiriomarquez (porfiriomarquez)
Official speed | 18.34 wpm (117.12 seconds elapsed during race) |
---|---|
Race Start | June 23, 2025 9:06:12pm UTC |
Race Finish | June 23, 2025 9:08:09pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 9.17 |
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)()); |