Felix (felix0003)

Race #1

View Pit Stop page for race #1 by felix0003Ghost race

View profile for Felix (felix0003)

Official speed 32.64 wpm (65.81 seconds elapsed during race)
Race Start October 8, 2025 7:28:06pm UTC
Race Finish October 8, 2025 7:29:12pm UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 16.32
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)());