Created
January 18, 2015 22:46
-
-
Save honewatson/7f0cee4f0c6454721d5a to your computer and use it in GitHub Desktop.
Closure example ( nimlang, nimrod, nim lang )
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
proc tc(a:int): proc = | |
return proc (b:int): int = | |
return a + b | |
var x: proc = tc(1) | |
echo x(2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Output: 3