Reassign variables with set, bugfixes for strings shorter than allocated size

This commit is contained in:
2025-10-06 18:33:53 +11:00
parent ae37d8deab
commit e180adea8c
5 changed files with 58 additions and 11 deletions

View File

@@ -1,7 +1,8 @@
create hello *5 = "Hello, world!"
create world *5 = "World, hello!"
create sigma *6 = "Sigma!"
create str1 *5 = "Hello"
create str2 *10 = "Hello!"
print hello
print world
print sigma
print str1
print str2
set str1 = "World!"
print str1