assignment

This commit is contained in:
2025-05-29 19:59:34 +02:00
parent 0c38b0b6a0
commit 01cc38f31d
3 changed files with 49 additions and 6 deletions

6
test.mot Normal file
View File

@@ -0,0 +1,6 @@
let a = 5
let b = 7
print(b - a)
a = 4
print(b - a)
print(b)