View Pit Stop page for race #15 by ram_sab0ur — Ghost race
View profile for RamSabour (ram_sab0ur)
Official speed | 28.62 wpm (75.05 seconds elapsed during race) |
---|---|
Race Start | September 19, 2025 4:17:09pm UTC |
Race Finish | September 19, 2025 4:18:24pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 91.0% |
Points | 14.31 |
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)()); |