aboutsummaryrefslogtreecommitdiffstats
path: root/test6
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2018-04-02 16:34:22 -0400
committerClyne Sullivan <tullivan99@gmail.com>2018-04-02 16:34:22 -0400
commitecbe199cb823a5017eab8f0f13ce9a91ba61980b (patch)
tree56f987543b1f10e798648575b78b750c330df9e7 /test6
parent31458dd042da2a3ce732546cd94318457b4f5bcf (diff)
fixed string memory leaks
Diffstat (limited to 'test6')
-rw-r--r--test610
1 files changed, 10 insertions, 0 deletions
diff --git a/test6 b/test6
new file mode 100644
index 0000000..bc17de2
--- /dev/null
+++ b/test6
@@ -0,0 +1,10 @@
+# test6
+# used to fix memory leak in setting defined strings
+
+test = "hello"
+test = "fail"
+a = test
+test = "acd"
+
+print(a)
+print(test)