Ameesh (yellow_flashh)

Race #1134

View Pit Stop page for race #1134 by yellow_flashhGhost race

View profile for Ameesh (yellow_flashh)

Official speed 40.77 wpm (52.69 seconds elapsed during race)
Race Start May 4, 2025 3:10:55am UTC
Race Finish May 4, 2025 3:11:48am UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 20.39
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)());