From 7a0cf65a818355bc6cf7a88148afb7ccf738e187 Mon Sep 17 00:00:00 2001 From: William Bell Date: Thu, 22 Sep 2022 20:59:06 +0100 Subject: [PATCH] fix broken code --- spec.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/spec.md b/spec.md index 05ab30b..c4a743e 100644 --- a/spec.md +++ b/spec.md @@ -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. example: + +``` let name = unknown [ name = input('name: ') @@ -90,7 +92,4 @@ log('you are', age, 'years old!') ] log('hello', name) log('we do not know your age anymore because it got deleted when the wrap finished.') - -``` - ```