how to use environments

This commit is contained in:
Roope Astala
2019-05-03 10:25:39 -04:00
parent f5c896c70f
commit cb8dc41766
2 changed files with 372 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License
# Very simple script to demonstrate run in environment
# Print message passed in as environment variable
import os
print(os.environ.get("MESSAGE"))