View Pit Stop page for race #3 by wahzzah — Ghost race
View profile for Wahzzah (wahzzah)
Official speed | 26.23 wpm (81.89 seconds elapsed during race) |
---|---|
Race Start | July 1, 2025 6:51:14am UTC |
Race Finish | July 1, 2025 6:52:36am UTC |
Outcome | Win (1 of 3) |
Accuracy | 92.0% |
Points | 13.12 |
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)()); |