Maciej (alimorek)

Race #1

View Pit Stop page for race #1 by alimorekGhost race

View profile for Maciej (alimorek)

Official speed 29.73 wpm (72.25 seconds elapsed during race)
Race Start September 21, 2025 12:48:42pm UTC
Race Finish September 21, 2025 12:49:54pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 14.86
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)());