]> git.lizzy.rs Git - uwu-lang.git/commitdiff
Update doc
authorElias Fleckenstein <54945686+EliasFleckenstein03@users.noreply.github.com>
Mon, 28 Feb 2022 15:55:19 +0000 (16:55 +0100)
committerGitHub <noreply@github.com>
Mon, 28 Feb 2022 15:55:19 +0000 (16:55 +0100)
README.md

index ebea2357ef9873656c4cb5b2b108e6b0d49a25ee..05fb5aa0e5141cf9ef2c087afaa27b8f74890aeb 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
 # uwulang
-UWU (**U**ltimate p**W**ogwamming lang**U**age) is a **functional**, **interpreted**, **weakly typed** programming language written in C.
+UWU (**U**ltimate p**W**ogwamming lang**U**age) is a **functional**, **interpreted**, **weakly typed**, **lazy evaluation** programming language written in C.
 
 ```uwu
 fibo
@@ -59,7 +59,7 @@ Makes heavy use of a module system with relative paths.
 
 There is support for native modules written in C (or a C ABI compatible language) that are loaded at runtime. The standard library relies on this feature.
 
-Strictly follows lambda principle. Functions without arguments are constants. Functions can (by design) not interact with anything globally, the input is passed to the main function and the only output is the return value of the main function. _However_, global interaction (e.g. print() or read()) could theoretically be added by native modules and since the VM does not cache any results and always calls functions, even .
+Strictly follows lambda principle. Functions without arguments are constants. Functions can (by design) not interact with anything globally, the input is passed to the main function and the only output is the return value of the main function. _However_, global interaction (e.g. print() or read()) could theoretically be added by native modules and since the VM does not cache any results and always calls functions.
 
 Arguments are always passed by value, there are no references (except references to functions). This way, all memory allocation is stack based and no garbage collector is needed.