Blame view

demo/astronomy/solar-system/correct-timeout.py 117 Bytes
ef9f327f   Miguel Barão   - another version...
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python3

import sys
import time

s = sys.stdin.read()

# generate timeout
time.sleep(100)

print(0.5)