Boats ✰ (vboats)

Race #1

View Pit Stop page for race #1 by vboatsGhost race

View profile for Boats ✰ (vboats)

Official speed 54.31 wpm (39.55 seconds elapsed during race)
Race Start June 17, 2025 8:29:23pm UTC
Race Finish June 17, 2025 8:30:02pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 27.15
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)());