mirror of
https://github.com/clearlinux/official-images.git
synced 2026-08-28 16:55:38 +00:00
14 lines
155 B
Python
14 lines
155 B
Python
import threading
|
|
import sys
|
|
|
|
|
|
def fun(i):
|
|
try:
|
|
fun(i+1)
|
|
except:
|
|
sys.exit(0)
|
|
|
|
|
|
t = threading.Thread(target=fun, args=[1])
|
|
t.start()
|