View Pit Stop page for race #92 by st4ff — Ghost race
View profile for Kramnik (st4ff)
Official speed | 52.21 wpm (41.14 seconds elapsed during race) |
---|---|
Race Start | July 18, 2025 10:02:47am UTC |
Race Finish | July 18, 2025 10:03:28am UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 26.11 |
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)()); |