brintos

brintos / llvm-project-archived public Read only

0
0
Text · 159 B · c7070d4 Raw
8 lines · python
1from __future__ import print_function2import os3 4 5def execute():6    for name in ["FOO", "BAR"]:7        print(name, "=", os.environ.get(name, "[undefined]"))8