Solo (solohan)

Race #479

View Pit Stop page for race #479 by solohanGhost race

View profile for Solo (solohan)

Official speed 64.25 wpm (89.65 seconds elapsed during race)
Race Start September 26, 2019 10:45:06am UTC
Race Finish September 26, 2019 10:46:35am UTC
Outcome No win (5 of 5)
Opponents 1. roastpotatoes (83.51 wpm)
2. seyasoya (81.34 wpm)
3. then1g (80.85 wpm)
4. richrock198 (65.61 wpm)
Accuracy 96.0%
Points 85.67
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.