Phoebe (jnnphbbcl)

Race #1

View Pit Stop page for race #1 by jnnphbbclGhost race

View profile for Phoebe (jnnphbbcl)

Official speed 23.88 wpm (89.95 seconds elapsed during race)
Race Start August 1, 2025 5:51:13pm UTC
Race Finish August 1, 2025 5:52:43pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 11.94
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)());