View Pit Stop page for race #78 by aadithebeast — Ghost race
View profile for aadithebest (aadithebeast)
Official speed | 20.60 wpm (104.27 seconds elapsed during race) |
---|---|
Race Start | June 29, 2025 1:59:49pm UTC |
Race Finish | June 29, 2025 2:01:33pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 88.0% |
Points | 10.30 |
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)()); |