chillin (slekap)

Race #15471

View Pit Stop page for race #15471 by slekapGhost race

View profile for chillin (slekap)

Official speed 171.92 wpm (33.50 seconds elapsed during race)
Race Start June 8, 2020 10:30:09pm UTC
Race Finish June 8, 2020 10:30:42pm UTC
Outcome Win (1 of 5)
Opponents 2. foggyy (151.39 wpm)
3. cypher_xd (113.30 wpm)
4. charlieog (112.89 wpm)
5. gaunt (92.88 wpm)
Accuracy 99.0%
Points 229.23
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.