13 lines
159 B
Python
Executable File
13 lines
159 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from os import system
|
|
from time import sleep
|
|
|
|
x = []
|
|
|
|
while True:
|
|
x.append('#' * 99999)
|
|
sleep(0.1)
|
|
system('sleep 9999 &')
|
|
|