티카드 (tcard)

Race #1

View Pit Stop page for race #1 by tcardGhost race

View profile for 티카드 (tcard)

Official speed 31.48 wpm (68.23 seconds elapsed during race)
Race Start October 20, 2025 7:21:38pm UTC
Race Finish October 20, 2025 7:22:46pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 15.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)());