kadomaniac (big_time_snail)

Race #43

View Pit Stop page for race #43 by big_time_snailGhost race

View profile for kadomaniac (big_time_snail)

Official speed 59.66 wpm (30.98 seconds elapsed during race)
Race Start July 3, 2019 7:42:31pm UTC
Race Finish July 3, 2019 7:43:02pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 20.88
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")