Daniele (sorry_im_a_noob)

Race #3

View Pit Stop page for race #3 by sorry_im_a_noobGhost race

View profile for Daniele (sorry_im_a_noob)

Official speed 65.80 wpm (28.09 seconds elapsed during race)
Race Start August 15, 2023 1:32:26pm UTC
Race Finish August 15, 2023 1:32:54pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 23.03
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")