Emil (emle10)

Race #10023

View Pit Stop page for race #10023 by emle10Ghost race

View profile for Emil (emle10)

Official speed 82.82 wpm (69.55 seconds elapsed during race)
Race Start September 28, 2019 12:55:31pm UTC
Race Finish September 28, 2019 12:56:40pm UTC
Outcome Win (1 of 4)
Opponents 2. phmi (82.12 wpm)
Accuracy 96.0%
Points 110.43
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.