View Pit Stop page for race #16 by vilfred — Ghost race
View profile for Skraber (vilfred)
Official speed | 36.47 wpm (58.90 seconds elapsed during race) |
---|---|
Race Start | July 26, 2025 7:28:55pm UTC |
Race Finish | July 26, 2025 7:29:54pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 91.0% |
Points | 18.24 |
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)()); |