View Pit Stop page for race #231 by neyool — Ghost race
View profile for Neyool (neyool)
Official speed | 32.37 wpm (66.36 seconds elapsed during race) |
---|---|
Race Start | May 21, 2025 8:30:45am UTC |
Race Finish | May 21, 2025 8:31:51am UTC |
Outcome | No win (3 of 3) |
Accuracy | 98.0% |
Points | 16.18 |
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)()); |