View Pit Stop page for race #506 by silmon — Ghost race
View profile for Silmon121 (silmon)
Official speed | 60.21 wpm (35.68 seconds elapsed during race) |
---|---|
Race Start | October 17, 2025 1:03:16pm UTC |
Race Finish | October 17, 2025 1:03:52pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 95.0% |
Points | 30.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)()); |