View Pit Stop page for race #6 by lynne17 — Ghost race
View profile for Lynne (lynne17)
Official speed | 37.46 wpm (57.34 seconds elapsed during race) |
---|---|
Race Start | May 2, 2025 7:34:43pm UTC |
Race Finish | May 2, 2025 7:35:40pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 18.73 |
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)()); |