ZeYaD22 (zead22)

Race #3

View Pit Stop page for race #3 by zead22Ghost race

View profile for ZeYaD22 (zead22)

Official speed 56.66 wpm (32.62 seconds elapsed during race)
Race Start January 26, 2020 7:48:55pm UTC
Race Finish January 26, 2020 7:49:28pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 19.83
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")