Vlad (ivs_2107)

Race #1

View Pit Stop page for race #1 by ivs_2107Ghost race

View profile for Vlad (ivs_2107)

Official speed 23.82 wpm (77.58 seconds elapsed during race)
Race Start June 16, 2023 6:06:42pm UTC
Race Finish June 16, 2023 6:08:00pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 8.34
Text #10002 (Length: 154 characters)

import os import sys def run(program, *args): pid = os.fork() if not pid: os.execvp(program, program + args) return os.wait()[0] run("python", "hello.py")