Neyool (neyool)

Race #558

View Pit Stop page for race #558 by neyoolGhost race

View profile for Neyool (neyool)

Official speed 44.76 wpm (47.99 seconds elapsed during race)
Race Start June 24, 2025 6:55:28am UTC
Race Finish June 24, 2025 6:56:16am UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 22.38
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)());