Ring2020 (ring2020)

Race #2783

View Pit Stop page for race #2783 by ring2020Ghost race

View profile for Ring2020 (ring2020)

Official speed 68.45 wpm (84.15 seconds elapsed during race)
Race Start November 21, 2020 1:19:54pm UTC
Race Finish November 21, 2020 1:21:18pm UTC
Outcome No win (4 of 4)
Opponents 1. quan72io (83.79 wpm)
2. konnomon (80.47 wpm)
Accuracy 97.0%
Points 91.26
Text #4180044 (Length: 480 characters)

All programs have to manage the way they use a computer's memory while running. Some languages have garbage collection that constantly looks for no longer used memory as the program runs; in other languages, the programmer must explicitly allocate and free the memory. Rust uses a third approach: memory is managed through a system of ownership with a set of rules that the compiler checks at compile time. None of the ownership features slow down your program while it's running.