One (katate_one)

Race #2

View Pit Stop page for race #2 by katate_oneGhost race

View profile for One (katate_one)

Official speed 38.38 wpm (55.97 seconds elapsed during race)
Race Start August 11, 2024 11:07:47pm UTC
Race Finish August 11, 2024 11:08:43pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 19.19
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)());