maruf (maruf1010)

Race #12

View Pit Stop page for race #12 by maruf1010Ghost race

View profile for maruf (maruf1010)

Official speed 34.48 wpm (53.60 seconds elapsed during race)
Race Start April 6, 2018 9:38:10am UTC
Race Finish April 6, 2018 9:39:03am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 12.07
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")