thomas (thomascdh)

Race #6

View Pit Stop page for race #6 by thomascdhGhost race

View profile for thomas (thomascdh)

Official speed 26.23 wpm (81.89 seconds elapsed during race)
Race Start March 21, 2025 10:09:25pm UTC
Race Finish March 21, 2025 10:10:47pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 13.11
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)());