print and more

This commit is contained in:
nora 2021-12-29 20:12:45 +01:00
parent ebbc675ffd
commit 9e643b8acd
9 changed files with 150 additions and 54 deletions

View file

@ -39,6 +39,12 @@ let obj = {};
obj.hi = "hi!";
```
There is the `print` statement to print a value, but this will be removed
```rust
let name = "nils";
print name;
```
Functions are first class
```rust