From 8f42fa9c2ad936bee4261c0bbed8d5dd9df65062 Mon Sep 17 00:00:00 2001 From: sashakoshka Date: Fri, 12 Aug 2022 20:32:58 -0400 Subject: [PATCH] Add some more guidelines to readme --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 70874d0..6ca2326 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,12 @@ These are some design goals that I have followed/am following: - The standard library will be fully optional, and decoupled from the language - The language itself must be extremely simple - Language features must be immutable (no reflection or operator overloading) +- Prefer static over dynamic - Data must be immutable by default - Memory not on the stack must be allocated and freed manually - Language syntax must have zero ambiguity +- The compiler should not generate new functions or complex logic that the user + has not written ## Planned features