Tahsin (tahsin__1)

Race #170

View Pit Stop page for race #170 by tahsin__1Ghost race

View profile for Tahsin (tahsin__1)

Official speed 33.47 wpm (64.18 seconds elapsed during race)
Race Start May 18, 2025 4:33:01pm UTC
Race Finish May 18, 2025 4:34:05pm UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 16.74
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)());