View Pit Stop page for race #458 by evil_alex — Ghost race
View profile for Alex (evil_alex)
Official speed | 44.89 wpm (47.85 seconds elapsed during race) |
---|---|
Race Start | April 12, 2025 8:51:24am UTC |
Race Finish | April 12, 2025 8:52:12am UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 22.44 |
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)()); |