J Gary (jgary199)

Race #92

View Pit Stop page for race #92 by jgary199Ghost race

View profile for J Gary (jgary199)

Official speed 39.35 wpm (54.59 seconds elapsed during race)
Race Start June 27, 2025 2:55:49am UTC
Race Finish June 27, 2025 2:56:43am UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 19.68
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)());