Files
Ciro Santilli 六四事件 法轮功 9cb2f48725 count.py
2020-01-16 00:00:00 +00:00

12 lines
158 B
Python
Executable File

#!/usr/bin/env python3
# https://cirosantilli.com/linux-kernel-module-cheat#python
import time
i = 0
while True:
print(i)
time.sleep(1)
i += 1