New - by Present (vfctyrant)

Race #6291

View Pit Stop page for race #6291 by vfctyrantGhost race

View profile for New - by Present (vfctyrant)

Official speed 122.62 wpm (46.97 seconds elapsed during race)
Race Start September 3, 2020 6:11:42pm UTC
Race Finish September 3, 2020 6:12:29pm UTC
Outcome No win (2 of 4)
Opponents 1. amun (141.59 wpm)
3. mojko (115.44 wpm)
Accuracy 98.0%
Points 163.49
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.