View Pit Stop page for race #1 by key_flash — Ghost race
Official speed | 24.71 wpm (86.93 seconds elapsed during race) |
---|---|
Race Start | July 31, 2025 6:43:52am UTC |
Race Finish | July 31, 2025 6:45:19am UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 12.36 |
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)()); |