View Pit Stop page for race #4 by iverjoel — Ghost race
View profile for iver (iverjoel)
Official speed | 15.95 wpm (134.67 seconds elapsed during race) |
---|---|
Race Start | June 6, 2025 4:59:38pm UTC |
Race Finish | June 6, 2025 5:01:52pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 86.0% |
Points | 7.97 |
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)()); |