Kiiro (kiirojay)

Race #10

View Pit Stop page for race #10 by kiirojayGhost race

View profile for Kiiro (kiirojay)

Official speed 27.31 wpm (78.65 seconds elapsed during race)
Race Start February 9, 2025 10:58:59pm UTC
Race Finish February 9, 2025 11:00:18pm UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 13.66
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)());