Petter (ph140)

Race #9

View Pit Stop page for race #9 by ph140Ghost race

View profile for Petter (ph140)

Official speed 44.19 wpm (48.61 seconds elapsed during race)
Race Start February 17, 2024 2:55:09pm UTC
Race Finish February 17, 2024 2:55:58pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 22.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)());