Anit (anit2007)

Race #1

View Pit Stop page for race #1 by anit2007Ghost race

View profile for Anit (anit2007)

Official speed 29.32 wpm (73.26 seconds elapsed during race)
Race Start July 5, 2025 1:49:17pm UTC
Race Finish July 5, 2025 1:50:31pm UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 14.66
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)());