d6bdb664fb
* zh-trans: add broken link references * zh-trans: another batch of needed references * zh-trans: add needed community/static/cncf-code-of-conduct.md ref
8 lines
156 B
Python
8 lines
156 B
Python
#!/usr/bin/env python
|
|
|
|
# Just prints standard out and sleeps for 10 seconds.
|
|
import sys
|
|
import time
|
|
print("Processing " + sys.stdin.lines())
|
|
time.sleep(10)
|