Alex (evil_alex)

Race #406

View Pit Stop page for race #406 by evil_alexGhost race

View profile for Alex (evil_alex)

Official speed 44.56 wpm (48.20 seconds elapsed during race)
Race Start March 20, 2025 3:43:29pm UTC
Race Finish March 20, 2025 3:44:17pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 22.28
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)());