Neptune (neptune_22)

Race #4657

View Pit Stop page for race #4657 by neptune_22Ghost race

View profile for Neptune (neptune_22)

Official speed 65.62 wpm (87.78 seconds elapsed during race)
Race Start September 27, 2020 2:16:58pm UTC
Race Finish September 27, 2020 2:18:26pm UTC
Outcome Win (1 of 5)
Opponents 4. joanwyss (55.52 wpm)
Accuracy 96.0%
Points 87.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.