View Pit Stop page for race #62 by jgary199 — Ghost race
View profile for J Gary (jgary199)
Official speed | 30.91 wpm (69.49 seconds elapsed during race) |
---|---|
Race Start | June 1, 2025 12:36:51am UTC |
Race Finish | June 1, 2025 12:38:00am UTC |
Outcome | Win (1 of 5) |
Accuracy | 88.0% |
Points | 15.46 |
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)()); |