View Pit Stop page for race #321 by evil_alex — Ghost race
View profile for Alex (evil_alex)
Official speed | 35.91 wpm (59.82 seconds elapsed during race) |
---|---|
Race Start | February 13, 2025 7:18:53pm UTC |
Race Finish | February 13, 2025 7:19:52pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 17.95 |
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)()); |