From d79a8808d7d8caea4b097e4b0e27c9bdb93c52b6 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Thu, 29 Jan 2026 14:36:13 +0100 Subject: [PATCH] Update readme example and last version --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 41a02b101..968344553 100644 --- a/README.md +++ b/README.md @@ -36,10 +36,10 @@ whole new language. ### Example code -The following code shows [generic modules](https://c3-lang.org/generic-programming/generics/) (more examples can be found at https://c3-lang.org/language-overview/examples/). +The following code shows [generics](https://c3-lang.org/generic-programming/generics/) (more examples can be found at https://c3-lang.org/language-overview/examples/). ```c3 -module stack {Type}; +module stack ; // Above: the parameterized type is applied to the entire module. struct Stack @@ -142,7 +142,7 @@ fn void main() ### Current status -The current stable version of the compiler is **version 0.7.8**. +The current stable version of the compiler is **version 0.7.9**. The upcoming 0.7.x releases will focus on expanding the standard library, fixing bugs and improving compile time analysis.