Dean (angrytongan)

Race #339

View Pit Stop page for race #339 by angrytonganGhost race

View profile for Dean (angrytongan)

Official speed 116.24 wpm (49.55 seconds elapsed during race)
Race Start September 28, 2019 11:45:49pm UTC
Race Finish September 28, 2019 11:46:39pm UTC
Outcome No win (2 of 5)
Opponents 1. unbelievable_10 (123.99 wpm)
3. godisslow (103.62 wpm)
4. speedyant (92.66 wpm)
Accuracy 99.0%
Points 154.99
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.