Ameesh (yellow_flashh)

Race #1140

View Pit Stop page for race #1140 by yellow_flashhGhost race

View profile for Ameesh (yellow_flashh)

Official speed 39.29 wpm (54.67 seconds elapsed during race)
Race Start May 12, 2025 3:00:31am UTC
Race Finish May 12, 2025 3:01:26am UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 19.65
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)());