sukhoi su-57 (shezy)

Race #55

View Pit Stop page for race #55 by shezyGhost race

View profile for sukhoi su-57 (shezy)

Official speed 19.23 wpm (111.70 seconds elapsed during race)
Race Start September 30, 2025 7:41:59pm UTC
Race Finish September 30, 2025 7:43:51pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 9.61
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)());