RosettaCodeData/Task/Runtime-evaluation/Python/runtime-evaluation-1.py
2023-07-01 13:44:08 -04:00

5 lines
47 B
Python

>>> exec '''
x = sum([1,2,3,4])
print x
'''
10