thomas (thomascdh)

Race #9

View Pit Stop page for race #9 by thomascdhGhost race

View profile for thomas (thomascdh)

Official speed 28.69 wpm (74.87 seconds elapsed during race)
Race Start March 21, 2025 10:16:03pm UTC
Race Finish March 21, 2025 10:17:18pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 14.35
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)());