Ayush (xxelectronxx)

Race #1

View Pit Stop page for race #1 by xxelectronxxGhost race

View profile for Ayush (xxelectronxx)

Official speed 45.13 wpm (40.95 seconds elapsed during race)
Race Start May 22, 2018 12:51:14am UTC
Race Finish May 22, 2018 12:51:55am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 15.80
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")