RosettaCodeData/Task/Runtime-evaluation/Python/runtime-evaluation-1.py
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

5 lines
47 B
Python

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