mahmood (imedo1)

Race #6

View Pit Stop page for race #6 by imedo1Ghost race

View profile for mahmood (imedo1)

Official speed 21.51 wpm (99.86 seconds elapsed during race)
Race Start October 7, 2025 1:58:17pm UTC
Race Finish October 7, 2025 1:59:57pm UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 10.75
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)());