View Pit Stop page for race #1 by samuel001 — Ghost race
View profile for Samuel (samuel001)
Official speed | 23.18 wpm (92.67 seconds elapsed during race) |
---|---|
Race Start | May 3, 2025 3:14:29pm UTC |
Race Finish | May 3, 2025 3:16:02pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 91.0% |
Points | 11.59 |
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)()); |