Alvaro Moyata (tocsky)

Race #58

View Pit Stop page for race #58 by tocskyGhost race

View profile for Alvaro Moyata (tocsky)

Official speed 26.76 wpm (80.27 seconds elapsed during race)
Race Start June 27, 2025 12:42:53am UTC
Race Finish June 27, 2025 12:44:14am UTC
Outcome No win (4 of 12)
Accuracy 93.0%
Points 13.38
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)());