This commit is contained in:
Ciro Santilli 六四事件 法轮功
2020-01-16 00:00:00 +00:00
parent 428d5f6ac2
commit 9cb2f48725
2 changed files with 23 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
#!/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