fix broken code

This commit is contained in:
2022-09-22 20:59:06 +01:00
parent a2242a62fa
commit 7a0cf65a81

View File

@@ -82,6 +82,8 @@ a wrap is used to wrap code in square brackets. its used to create a memory stac
inside the wraps stack are deleted once the wrap is finished. inside the wraps stack are deleted once the wrap is finished.
example: example:
```
let name = unknown let name = unknown
[ [
name = input('name: ') name = input('name: ')
@@ -90,7 +92,4 @@ log('you are', age, 'years old!')
] ]
log('hello', name) log('hello', name)
log('we do not know your age anymore because it got deleted when the wrap finished.') log('we do not know your age anymore because it got deleted when the wrap finished.')
```
``` ```