clinton (papa_bear_clinton)

Race #15

View Pit Stop page for race #15 by papa_bear_clintonGhost race

View profile for clinton (papa_bear_clinton)

Official speed 25.76 wpm (83.39 seconds elapsed during race)
Race Start December 16, 2024 7:41:48am UTC
Race Finish December 16, 2024 7:43:11am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 12.88
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)());