Melvin (mellikyun)

Race #2

View Pit Stop page for race #2 by mellikyunGhost race

View profile for Melvin (mellikyun)

Official speed 40.14 wpm (46.04 seconds elapsed during race)
Race Start December 3, 2020 8:00:40am UTC
Race Finish December 3, 2020 8:01:26am UTC
Outcome Win (1 of 2)
Accuracy 94.0%
Points 14.05
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")