L.in.k (xquyen)

Race #316

View Pit Stop page for race #316 by xquyenGhost race

View profile for L.in.k (xquyen)

Official speed 62.18 wpm (29.72 seconds elapsed during race)
Race Start August 21, 2023 5:45:56am UTC
Race Finish August 21, 2023 5:46:25am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 21.76
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")