View Pit Stop page for race #17 by warlord1999 — Ghost race
View profile for warlord (warlord1999)
Official speed | 23.27 wpm (92.31 seconds elapsed during race) |
---|---|
Race Start | June 15, 2025 3:47:21am UTC |
Race Finish | June 15, 2025 3:48:53am UTC |
Outcome | No win (3 of 3) |
Accuracy | 90.0% |
Points | 11.63 |
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)()); |