The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
240 B
12 lines
240 B
5 years ago
|
#!/usr/bin/env python3
|
||
|
|
||
|
import os
|
||
|
|
||
3 years ago
|
assert 'ENV_A' in os.environ
|
||
|
assert 'ENV_B' in os.environ
|
||
|
assert 'ENV_C' in os.environ
|
||
5 years ago
|
|
||
|
print('ENV_A is', os.environ['ENV_A'])
|
||
|
print('ENV_B is', os.environ['ENV_B'])
|
||
|
print('ENV_C is', os.environ['ENV_C'])
|