Karan Jain (karanjain18)

Race #1

View Pit Stop page for race #1 by karanjain18Ghost race

View profile for Karan Jain (karanjain18)

Official speed 27.39 wpm (67.47 seconds elapsed during race)
Race Start January 4, 2019 12:42:24pm UTC
Race Finish January 4, 2019 12:43:32pm UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 9.59
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")