Created
February 15, 2015 08:27
-
-
Save Deco/0827f2e27dda2cc5fcd2 to your computer and use it in GitHub Desktop.
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
import sequtils | |
template test(x: int; list: varargs[int]): expr = | |
foldl(list, a*(b+x)) | |
echo test(5, 1, 2, 3, 4) # 504 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment