View Pit Stop page for race #149 by aadithebeast — Ghost race
View profile for aadithebest (aadithebeast)
Official speed | 25.09 wpm (85.61 seconds elapsed during race) |
---|---|
Race Start | July 8, 2025 10:48:28am UTC |
Race Finish | July 8, 2025 10:49:54am UTC |
Outcome | No win (3 of 3) |
Accuracy | 91.0% |
Points | 12.54 |
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)()); |