Mohamed (mohamed_beco)

Race #5

View Pit Stop page for race #5 by mohamed_becoGhost race

View profile for Mohamed (mohamed_beco)

Official speed 30.15 wpm (71.24 seconds elapsed during race)
Race Start July 15, 2025 4:26:51pm UTC
Race Finish July 15, 2025 4:28:02pm UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 15.07
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)());