View Pit Stop page for race #3 by joshuakael — Ghost race
View profile for Joshua (joshuakael)
Official speed | 30.03 wpm (71.53 seconds elapsed during race) |
---|---|
Race Start | August 14, 2025 8:49:50pm UTC |
Race Finish | August 14, 2025 8:51:02pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 92.0% |
Points | 15.01 |
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)()); |