brintos

brintos / llvm-project-archived public Read only

0
0
Text · 128 B · ca4d5d3 Raw
8 lines · python
1# 'sleep 60' in Python because Windows does not have a native sleep command.2#3# RUN: %{python} %s4 5import time6 7time.sleep(60)8