brintos

brintos / llvm-project-archived public Read only

0
0
Text · 143 B · cbf671c Raw
8 lines · cpp
1#include <cstdlib>2#include <iostream>3 4int main() {5  if (const char *env_p = std::getenv("FOO"))6    std::cout << "FOO=" << env_p << '\n';7}8