View Pit Stop page for race #9 by neyool — Ghost race
View profile for Neyool (neyool)
Official speed | 26.58 wpm (80.81 seconds elapsed during race) |
---|---|
Race Start | April 21, 2025 11:30:38am UTC |
Race Finish | April 21, 2025 11:31:59am UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 13.29 |
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)()); |