Tahsin (tahsin__1)

Race #112

View Pit Stop page for race #112 by tahsin__1Ghost race

View profile for Tahsin (tahsin__1)

Official speed 30.64 wpm (70.10 seconds elapsed during race)
Race Start May 7, 2025 5:10:48pm UTC
Race Finish May 7, 2025 5:11:58pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 15.32
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)());