Joy (joy_1)

Race #7034

View Pit Stop page for race #7034 by joy_1Ghost race

View profile for Joy (joy_1)

Official speed 63.98 wpm (90.03 seconds elapsed during race)
Race Start July 15, 2020 6:54:57am UTC
Race Finish July 15, 2020 6:56:27am UTC
Outcome No win (3 of 5)
Opponents 2. rastaman_1994 (66.70 wpm)
4. jetray (58.85 wpm)
Accuracy 93.0%
Points 85.30
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.