porfiriomarquez (porfiriomarquez)

Race #56

View Pit Stop page for race #56 by porfiriomarquezGhost race

View profile for porfiriomarquez (porfiriomarquez)

Official speed 12.70 wpm (169.13 seconds elapsed during race)
Race Start June 23, 2025 6:54:52pm UTC
Race Finish June 23, 2025 6:57:41pm UTC
Outcome No win (2 of 3)
Accuracy 93.0%
Points 6.35
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)());