Trae (traeb1999)

Race #611

View Pit Stop page for race #611 by traeb1999Ghost race

View profile for Trae (traeb1999)

Official speed 65.80 wpm (87.54 seconds elapsed during race)
Race Start March 10, 2020 11:48:15pm UTC
Race Finish March 10, 2020 11:49:43pm UTC
Outcome No win (2 of 5)
Opponents 3. iamhelenkeller (64.00 wpm)
4. wusien (55.70 wpm)
Accuracy 96.0%
Points 87.74
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.