J Gary (jgary199)

Race #55

View Pit Stop page for race #55 by jgary199Ghost race

View profile for J Gary (jgary199)

Official speed 33.49 wpm (64.14 seconds elapsed during race)
Race Start May 29, 2025 2:03:47am UTC
Race Finish May 29, 2025 2:04:52am UTC
Outcome No win (3 of 3)
Accuracy 90.0%
Points 16.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)());