View Pit Stop page for race #360 by beltran_tarqui — Ghost race
View profile for Alex Beltran T. (beltran_tarqui)
Official speed | 38.32 wpm (56.05 seconds elapsed during race) |
---|---|
Race Start | July 2, 2025 8:53:50pm UTC |
Race Finish | July 2, 2025 8:54:46pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 19.16 |
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)()); |