Raymond (raymonds)

Race #4074

View Pit Stop page for race #4074 by raymondsGhost race

View profile for Raymond (raymonds)

Official speed 71.62 wpm (80.42 seconds elapsed during race)
Race Start May 5, 2019 1:31:33pm UTC
Race Finish May 5, 2019 1:32:53pm UTC
Outcome No win (3 of 5)
Opponents 1. hinduism (81.42 wpm)
2. jasocanfly (75.20 wpm)
4. mm66 (54.93 wpm)
Accuracy 97.0%
Points 95.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.