Tahsin (tahsin__1)

Race #46

View Pit Stop page for race #46 by tahsin__1Ghost race

View profile for Tahsin (tahsin__1)

Official speed 28.37 wpm (75.71 seconds elapsed during race)
Race Start May 4, 2025 3:49:11pm UTC
Race Finish May 4, 2025 3:50:27pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 14.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)());