Clean up examples

This commit is contained in:
Jeff 2024-01-30 14:31:22 -05:00
parent ba0d154962
commit 0ba3ed51e0
3 changed files with 0 additions and 26 deletions

View File

@ -1,6 +0,0 @@
list = [1 2 3]
for i in list {
i += 1
output(i)
}

View File

@ -1,9 +0,0 @@
numbers = [1, 2, 3]
x = numbers:0
y = numbers:1
z = numbers:2
assert_equal(x + y, z)
numbers

View File

@ -1,11 +0,0 @@
dictionary = {
dust = "awesome"
answer = 42
}
output(
'Dust is '
+ dictionary:dust
+ '! The answer is '
+ dictionary:answer
)