Forst (forstpenguin)

Race #1

View Pit Stop page for race #1 by forstpenguinGhost race

View profile for Forst (forstpenguin)

Official speed 50.59 wpm (42.46 seconds elapsed during race)
Race Start August 18, 2025 7:35:42pm UTC
Race Finish August 18, 2025 7:36:24pm UTC
Outcome No win (2 of 9)
Opponents 6. ddellspe (40.39 wpm)
Accuracy 96.0%
Points 25.30
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)());