Marko (hawk691)

Race #272

View Pit Stop page for race #272 by hawk691Ghost race

View profile for Marko (hawk691)

Official speed 24.09 wpm (89.17 seconds elapsed during race)
Race Start July 24, 2025 2:15:18pm UTC
Race Finish July 24, 2025 2:16:47pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 12.05
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)());