Carl (himynameisrohitsingh)

Race #8

View Pit Stop page for race #8 by himynameisrohitsinghGhost race

View profile for Carl (himynameisrohitsingh)

Official speed 48.51 wpm (38.10 seconds elapsed during race)
Race Start March 30, 2019 7:28:50am UTC
Race Finish March 30, 2019 7:29:28am UTC
Outcome No win (2 of 2)
Opponents 1. bladevampirek (65.99 wpm)
Accuracy 93.0%
Points 16.98
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")