josh (josh3211)

Race #1

View Pit Stop page for race #1 by josh3211Ghost race

View profile for josh (josh3211)

Official speed 29.68 wpm (72.37 seconds elapsed during race)
Race Start October 15, 2025 2:16:03pm UTC
Race Finish October 15, 2025 2:17:16pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 14.84
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)());