This commit is contained in:
2023-10-31 13:02:07 +01:00
parent e63396f6b7
commit 9256184430
39 changed files with 910 additions and 25 deletions

View File

@@ -0,0 +1,19 @@
#abort()
def do_loop():
a=0
while not is_aborted():
a=a+1
print "End"
def do_loop():
a=0
while True:
a=a+1
#check_aborted()
print "End"
do_loop()
#parallelize(do_loop)