View Pit Stop page for race #1 by ram_sab0ur — Ghost race
View profile for RamSabour (ram_sab0ur)
Official speed | 27.08 wpm (79.32 seconds elapsed during race) |
---|---|
Race Start | September 11, 2025 10:31:13am UTC |
Race Finish | September 11, 2025 10:32:32am UTC |
Outcome | No win (3 of 3) |
Accuracy | 93.0% |
Points | 13.54 |
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)()); |