brintos

brintos / llvm-project-archived public Read only

0
0
Text · 153 B · 357089d Raw
11 lines · python
1#!/usr/bin/env python2 3import sys4 5 6sys.stdout.write("a line on stdout\n")7sys.stdout.flush()8 9sys.stderr.write("a line on stderr\n")10sys.stderr.flush()11