Ashley (ashleya9790)

Race #20

View Pit Stop page for race #20 by ashleya9790Ghost race

View profile for Ashley (ashleya9790)

Official speed 91.88 wpm (62.69 seconds elapsed during race)
Race Start September 19, 2020 7:20:28am UTC
Race Finish September 19, 2020 7:21:31am UTC
Outcome Win (1 of 5)
Opponents 3. metasuitsneo (75.40 wpm)
5. bliss14b (62.62 wpm)
Accuracy 96.0%
Points 122.51
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.