resolve feedback, added compiler stages diagram

This commit is contained in:
Luke Boswell 2022-11-06 09:15:18 +11:00
parent a3f901427a
commit d702e391b8
No known key found for this signature in database
GPG key ID: 0E908525B2C7BD68
7 changed files with 20 additions and 8 deletions

View file

@ -1,4 +1,8 @@
//! provides `Roc` styled collection [reference counting](https://en.wikipedia.org/wiki/Reference_counting).
//! Provides `Roc` styled collection [reference counting](https://en.wikipedia.org/wiki/Reference_counting).
//! This means the collection may or may not be safe to mutate in-place, may or
//! may not be reference counted, and may or may not need to be freed when no
//! longer in use. Whether each of these is true for a given collection can be
//! determined by inspecting that collection at runtime.
#![crate_type = "lib"]
#![no_std]