Files
2026-07-13 12:24:33 +08:00

12 lines
234 B
Python

# SPDX-License-Identifier: Apache-2.0
# TEST_METADATA: {
# "expected_status": 200,
# "expected_min_length": 1,
# "allowed_imports": ["os"]
# }
# Standard
import os
result = os.environ.get("PATH", "default_value")
print(result)