Abdelrahman (eltyar)

Race #5

View Pit Stop page for race #5 by eltyarGhost race

View profile for Abdelrahman (eltyar)

Official speed 40.97 wpm (52.43 seconds elapsed during race)
Race Start September 9, 2025 8:43:02pm UTC
Race Finish September 9, 2025 8:43:55pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 20.48
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)());