From 20e05d7a831ba99da0ab64c47832b868f40ad391 Mon Sep 17 00:00:00 2001 From: Jason Walker Date: Fri, 27 Dec 2024 16:44:07 -0500 Subject: [PATCH] Add doc page and link to Readme --- README.md | 8 ++++++++ docs/collections-guide.md | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 docs/collections-guide.md diff --git a/README.md b/README.md index e36e34f3e..7c5d6dbee 100644 --- a/README.md +++ b/README.md @@ -130,6 +130,14 @@ Coalton is currently used in production to build [quantum computing software](ht **Learn**: Start with [*Intro to Coalton*](docs/intro-to-coalton.md) and the [standard library reference](https://coalton-lang.github.io/reference/), and then take a peek at the [examples directory](examples/). It may also be helpful to check out the [introductory blog post](https://coalton-lang.github.io/20211010-introducing-coalton/). +For documentation on more advanced Coalton features, refer to the other docs pages: +* [Coalton <-> Common Lisp Interop](docs/coalton-lisp-interop.md) +* [Coalton Collections Guide](docs/collections-guide.md) + +Check out the following docs to explain ancillary aspects of Coalton development, like testing and documenting your codebase: +* [Coalton Documentation Guide](docs/coalton-documentation-guide.md) +* [Intro to Coalton Testing](docs/intro-to-coalton-testing.md) + ## What's Here? This repository contains the source code to the [Coalton compiler](src/), and the [standard library](library/). diff --git a/docs/collections-guide.md b/docs/collections-guide.md new file mode 100644 index 000000000..1cab45e7a --- /dev/null +++ b/docs/collections-guide.md @@ -0,0 +1,3 @@ +# Coalton Collections Library + +TODO: Document collections here \ No newline at end of file