jath03 (jath03)

Race #11

View Pit Stop page for race #11 by jath03Ghost race

View profile for jath03 (jath03)

Official speed 46.67 wpm (39.60 seconds elapsed during race)
Race Start October 16, 2020 10:16:51pm UTC
Race Finish October 16, 2020 10:17:31pm UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 16.33
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")