NSM101 (nsm101)

Race #12

View Pit Stop page for race #12 by nsm101Ghost race

View profile for NSM101 (nsm101)

Official speed 18.19 wpm (118.09 seconds elapsed during race)
Race Start June 3, 2025 2:31:41pm UTC
Race Finish June 3, 2025 2:33:39pm UTC
Outcome No win (3 of 3)
Accuracy 90.0%
Points 9.09
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)());