David (davidjohnston20)

Race #218

View Pit Stop page for race #218 by davidjohnston20Ghost race

View profile for David (davidjohnston20)

Official speed 89.10 wpm (64.65 seconds elapsed during race)
Race Start July 1, 2019 2:43:21am UTC
Race Finish July 1, 2019 2:44:26am UTC
Outcome No win (2 of 4)
Opponents 1. charlieog (104.70 wpm)
3. desparta (88.71 wpm)
4. carlof (70.52 wpm)
Accuracy 97.0%
Points 118.79
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.