(g_fruit)

Race #974

View Pit Stop page for race #974 by g_fruitGhost race

View profile for (g_fruit)

Official speed 60.20 wpm (95.68 seconds elapsed during race)
Race Start January 9, 2020 9:50:34am UTC
Race Finish January 9, 2020 9:52:10am UTC
Outcome No win (3 of 5)
Opponents 1. mickeyyaya (72.37 wpm)
2. mj_procuber (64.96 wpm)
4. danjayson (56.45 wpm)
Accuracy 96.0%
Points 80.26
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.