Lyndon (lyndonf)

Race #3

View Pit Stop page for race #3 by lyndonfGhost race

View profile for Lyndon (lyndonf)

Official speed 53.96 wpm (39.81 seconds elapsed during race)
Race Start February 25, 2024 3:07:57pm UTC
Race Finish February 25, 2024 3:08:37pm UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 26.98
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)());