View Pit Stop page for race #4 by urmoots — Ghost race
View profile for steven (urmoots)
Official speed | 26.92 wpm (79.79 seconds elapsed during race) |
---|---|
Race Start | July 11, 2025 7:49:26pm UTC |
Race Finish | July 11, 2025 7:50:46pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 90.0% |
Points | 13.46 |
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)()); |