View Pit Stop page for race #1 by fracticals — Ghost race
View profile for Stea (fracticals)
Official speed | 32.11 wpm (66.89 seconds elapsed during race) |
---|---|
Race Start | May 18, 2025 8:25:03am UTC |
Race Finish | May 18, 2025 8:26:10am UTC |
Outcome | No win (2 of 3) |
Accuracy | 94.0% |
Points | 16.05 |
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)()); |