Created
April 3, 2013 15:43
-
-
Save kachayev/5302369 to your computer and use it in GitHub Desktop.
Can you guess how it's possible? (yes, this is python)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| >>> (let (a=2, b=4) (a + b)) | |
| 6 | |
| >>> (let (x=20, y=40, z=1) (x*y*z)) | |
| 800 |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@nathan-hoad Good job!