Labo (labo)

Race #1

View Pit Stop page for race #1 by laboGhost race

View profile for Labo (labo)

Official speed 48.18 wpm (38.36 seconds elapsed during race)
Race Start October 7, 2020 5:09:08pm UTC
Race Finish October 7, 2020 5:09:47pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 16.86
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")