Nathaniel (scryo)

Race #318

View Pit Stop page for race #318 by scryoGhost race

View profile for Nathaniel (scryo)

Official speed 51.56 wpm (111.71 seconds elapsed during race)
Race Start September 7, 2020 8:39:29am UTC
Race Finish September 7, 2020 8:41:21am UTC
Outcome No win (5 of 5)
Opponents 1. manzood (64.27 wpm)
2. horizon_47 (63.45 wpm)
Accuracy 95.0%
Points 68.75
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.