View Pit Stop page for race #12 by jacob5257 — Ghost race
View profile for Jacob (jacob5257)
Official speed | 50.56 wpm (42.48 seconds elapsed during race) |
---|---|
Race Start | June 6, 2025 6:55:34pm UTC |
Race Finish | June 6, 2025 6:56:16pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 97.0% |
Points | 25.28 |
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)()); |