J Gary (jgary199)

Race #58

View Pit Stop page for race #58 by jgary199Ghost race

View profile for J Gary (jgary199)

Official speed 32.86 wpm (65.37 seconds elapsed during race)
Race Start May 31, 2025 11:59:18pm UTC
Race Finish June 1, 2025 12:00:23am UTC
Outcome No win (2 of 3)
Accuracy 90.0%
Points 16.43
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)());