View Pit Stop page for race #5 by castawaypirate — Ghost race
View profile for castaway (castawaypirate)
Official speed | 19.40 wpm (110.72 seconds elapsed during race) |
---|---|
Race Start | February 5, 2024 3:25:12pm UTC |
Race Finish | February 5, 2024 3:27:02pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 89.0% |
Points | 9.70 |
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)()); |