BigHead (big_head0)

Race #7

View Pit Stop page for race #7 by big_head0Ghost race

View profile for BigHead (big_head0)

Official speed 32.95 wpm (56.09 seconds elapsed during race)
Race Start August 6, 2023 10:31:19am UTC
Race Finish August 6, 2023 10:32:15am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 11.53
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")