BECHBECH (layvth)

Race #151

View Pit Stop page for race #151 by layvthGhost race

View profile for BECHBECH (layvth)

Official speed 48.59 wpm (44.21 seconds elapsed during race)
Race Start October 10, 2025 9:18:04pm UTC
Race Finish October 10, 2025 9:18:48pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 24.29
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)());