Angly (liciti)

Race #12

View Pit Stop page for race #12 by licitiGhost race

View profile for Angly (liciti)

Official speed 74.98 wpm (24.65 seconds elapsed during race)
Race Start December 4, 2020 6:44:02pm UTC
Race Finish December 4, 2020 6:44:27pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 26.24
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")