8 lines
194 B
Python
8 lines
194 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# TEST_METADATA: {
|
|
# "expected_status": 200,
|
|
# "expected_result": "42 is the answer",
|
|
# "allowed_imports": []
|
|
# }
|
|
result = str(42) + " is the answer"
|