Andrews (godspeeedd)

Race #91

View Pit Stop page for race #91 by godspeeeddGhost race

View profile for Andrews (godspeeedd)

Official speed 52.11 wpm (41.22 seconds elapsed during race)
Race Start June 27, 2025 6:16:41am UTC
Race Finish June 27, 2025 6:17:22am UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 26.05
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)());