YT (tim72)

Race #5

View Pit Stop page for race #5 by tim72Ghost race

View profile for YT (tim72)

Official speed 31.07 wpm (69.13 seconds elapsed during race)
Race Start August 17, 2025 11:34:08am UTC
Race Finish August 17, 2025 11:35:17am UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 15.54
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)());