Tahsin (tahsin__1)

Race #7

View Pit Stop page for race #7 by tahsin__1Ghost race

View profile for Tahsin (tahsin__1)

Official speed 22.61 wpm (95.00 seconds elapsed during race)
Race Start March 28, 2025 1:37:27pm UTC
Race Finish March 28, 2025 1:39:02pm UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 11.31
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)());