View Pit Stop page for race #96 by st4ff — Ghost race
View profile for Kramnik (st4ff)
Official speed | 57.04 wpm (37.66 seconds elapsed during race) |
---|---|
Race Start | July 18, 2025 10:15:37am UTC |
Race Finish | July 18, 2025 10:16:14am UTC |
Outcome | No win (3 of 3) |
Accuracy | 97.0% |
Points | 28.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)()); |