diff --git a/scripts/hello_world.py b/scripts/hello_world.py index 48e7373..68d426a 100644 --- a/scripts/hello_world.py +++ b/scripts/hello_world.py @@ -23,6 +23,10 @@ def Main(): myThread.start() # Starting a thread fp = open("def.txt") fp.close() + ilist = None + for i in range(300): + ilist[i] = i*i + if __name__ == '__main__':