View Pit Stop page for race #233 by aadithebeast — Ghost race
View profile for aadithebest (aadithebeast)
Official speed | 28.05 wpm (76.58 seconds elapsed during race) |
---|---|
Race Start | September 18, 2025 11:04:35am UTC |
Race Finish | September 18, 2025 11:05:51am UTC |
Outcome | No win (3 of 3) |
Accuracy | 92.0% |
Points | 14.02 |
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)()); |