View Pit Stop page for race #442 by evil_alex — Ghost race
View profile for Alex (evil_alex)
Official speed | 45.49 wpm (47.22 seconds elapsed during race) |
---|---|
Race Start | April 5, 2025 6:08:04pm UTC |
Race Finish | April 5, 2025 6:08:52pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 94.0% |
Points | 22.75 |
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)()); |