master-algorithms-py/src/basic_examples/example_lambda.py
2015-01-06 02:30:59 -05:00

7 lines
No EOL
79 B
Python

#!/usr/bin/env python
__author__ = "bt3"
test = lambda x: x**2
print test(3)