Alex (evil_alex)

Race #401

View Pit Stop page for race #401 by evil_alexGhost race

View profile for Alex (evil_alex)

Official speed 42.19 wpm (50.91 seconds elapsed during race)
Race Start March 20, 2025 3:34:09pm UTC
Race Finish March 20, 2025 3:35:00pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 21.09
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)());