Johan (joennelito)

Race #1

View Pit Stop page for race #1 by joennelitoGhost race

View profile for Johan (joennelito)

Official speed 37.89 wpm (48.77 seconds elapsed during race)
Race Start August 25, 2017 3:17:13pm UTC
Race Finish August 25, 2017 3:18:01pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 13.26
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")