Updated README.md with new content

This commit is contained in:
Sander Hautvast 2025-11-09 12:14:03 +01:00
parent 4e934fc5b8
commit 1d625f84f1

View file

@ -1,5 +1,7 @@
# crud-lang
![Project Icon](https://claude.ai/public/artifacts/04455622-58f3-4370-9364-3bf91dfb3138)
## Why?
1. Existing languages are just fine, but building web services is >always< bolted on, instead of supported out-of-the-box.
2. Whereas every company needs an API these days.
@ -143,7 +145,8 @@ let a:u32 = 42
* All variables are mutable right now. Have not come to a decision yet about mutable vs immutable variables.
* You must declare a variable before using it. Block scoping.
* There is no ```null```. There is ```void``` though.
* There is no ```null```.
There is ```void``` though.
* You must initialize a variable when declaring it.
**strings**