Mason (thesnutes)

Race #727

View Pit Stop page for race #727 by thesnutesGhost race

View profile for Mason (thesnutes)

Official speed 63.94 wpm (90.08 seconds elapsed during race)
Race Start March 20, 2019 1:02:14pm UTC
Race Finish March 20, 2019 1:03:44pm UTC
Outcome Win (1 of 4)
Opponents 2. avilash (54.41 wpm)
4. saqo1997 (46.43 wpm)
Accuracy 97.0%
Points 85.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.