Amine (ov4h)

Race #1

View Pit Stop page for race #1 by ov4hGhost race

View profile for Amine (ov4h)

Official speed 26.91 wpm (79.82 seconds elapsed during race)
Race Start November 2, 2025 2:10:55pm UTC
Race Finish November 2, 2025 2:12:15pm UTC
Outcome No win (2 of 2)
Accuracy 93.0%
Points 13.45
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)());