]> git.lizzy.rs Git - uwu-lang.git/blobdiff - README.md
Update capitalization of Turing in the README (#1)
[uwu-lang.git] / README.md
index ebea2357ef9873656c4cb5b2b108e6b0d49a25ee..e315367463e88a1ba9e5968ca3ba2ecdbec17f50 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
@@ -21,7 +21,7 @@ You can run the example using `./uwu example/test.uwu`
 - A meme - 10%
 - Meant for actual use - 5%
 
-It's turing complete and somewhat useable.
+It's Turing complete and somewhat useable.
 
 ## Invocation
 
@@ -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.