Nikk (white13)

Race #6

View Pit Stop page for race #6 by white13Ghost race

View profile for Nikk (white13)

Official speed 32.59 wpm (56.70 seconds elapsed during race)
Race Start April 14, 2021 3:33:35am UTC
Race Finish April 14, 2021 3:34:32am UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 11.41
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")