IonCube (ioncube)

Race #1

View Pit Stop page for race #1 by ioncubeGhost race

View profile for IonCube (ioncube)

Official speed 43.68 wpm (42.31 seconds elapsed during race)
Race Start November 18, 2020 8:31:42pm UTC
Race Finish November 18, 2020 8:32:24pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 15.29
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")