Maulik (mauliksoneji)

Race #2

View Pit Stop page for race #2 by mauliksonejiGhost race

View profile for Maulik (mauliksoneji)

Official speed 36.79 wpm (50.23 seconds elapsed during race)
Race Start February 17, 2017 3:29:22pm UTC
Race Finish February 17, 2017 3:30:12pm UTC
Outcome Win (1 of 2)
Accuracy 89.0%
Points 0.00
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")