Merge branch 'master' of github.com:meatballhat/lcthw-remnants

This commit is contained in:
Dan Buch 2011-09-10 01:16:14 -04:00
commit 34d54382d4

View File

@ -5,6 +5,6 @@ import sys
argc = int(sys.argv[1]) if sys.argv[1:] else 23694
command = "valgrind ./ex10 " + " ".join(map(str, range(argc)))
print("command = {}".format(command))
print("command = {0}".format(command))
os.system(command)