View Pit Stop page for race #1 by asottile — Ghost race
View profile for asottile (asottile)
Official speed | 55.45 wpm (38.74 seconds elapsed during race) |
---|---|
Race Start | August 18, 2025 7:35:42pm UTC |
Race Finish | August 18, 2025 7:36:20pm UTC |
Outcome | Win (1 of 9) |
Opponents |
2. forstpenguin (50.59 wpm) 6. ddellspe (40.39 wpm) |
Accuracy | 94.0% |
Points | 27.72 |
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)()); |