æ (c_c_c)

Race #1

View Pit Stop page for race #1 by c_c_cGhost race

View profile for æ (c_c_c)

Official speed 33.86 wpm (63.44 seconds elapsed during race)
Race Start October 3, 2025 6:23:50pm UTC
Race Finish October 3, 2025 6:24:53pm UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 16.93
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)());