Aditya (aditya2712)

Race #2243

View Pit Stop page for race #2243 by aditya2712Ghost race

View profile for Aditya (aditya2712)

Official speed 53.38 wpm (107.91 seconds elapsed during race)
Race Start September 27, 2020 8:07:46am UTC
Race Finish September 27, 2020 8:09:34am UTC
Outcome No win (3 of 5)
Opponents 2. dummy_2 (68.59 wpm)
5. zigav (46.90 wpm)
Accuracy 94.0%
Points 71.17
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.