Marcelo (kokosensei)

Race #72

View Pit Stop page for race #72 by kokosenseiGhost race

View profile for Marcelo (kokosensei)

Official speed 33.46 wpm (64.20 seconds elapsed during race)
Race Start June 12, 2025 8:02:09pm UTC
Race Finish June 12, 2025 8:03:13pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 16.73
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)());