diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-04-02 16:34:22 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-04-02 16:34:22 -0400 |
commit | ecbe199cb823a5017eab8f0f13ce9a91ba61980b (patch) | |
tree | 56f987543b1f10e798648575b78b750c330df9e7 /test6 | |
parent | 31458dd042da2a3ce732546cd94318457b4f5bcf (diff) |
fixed string memory leaks
Diffstat (limited to 'test6')
-rw-r--r-- | test6 | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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) |