(noob_master13)

Race #1

View Pit Stop page for race #1 by noob_master13Ghost race

View profile for (noob_master13)

Official speed 26.77 wpm (80.24 seconds elapsed during race)
Race Start July 13, 2025 11:35:17pm UTC
Race Finish July 13, 2025 11:36:37pm UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 13.38
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)());