View Pit Stop page for race #6 by porfiriomarquez — Ghost race
View profile for porfiriomarquez (porfiriomarquez)
Official speed | 14.01 wpm (153.32 seconds elapsed during race) |
---|---|
Race Start | May 28, 2025 1:15:16am UTC |
Race Finish | May 28, 2025 1:17:50am UTC |
Outcome | Win (1 of 3) |
Accuracy | 91.0% |
Points | 7.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)()); |