View Pit Stop page for race #757 by shiruzu — Ghost race
View profile for Lydia (shiruzu)
Official speed | 65.35 wpm (32.87 seconds elapsed during race) |
---|---|
Race Start | June 23, 2025 3:05:44pm UTC |
Race Finish | June 23, 2025 3:06:17pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 98.0% |
Points | 32.68 |
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)()); |