Assignment versus binding

Gregory Ewing greg.ewing at canterbury.ac.nz
Wed Oct 5 09:13:35 EDT 2016


Chris Angelico wrote:
> How do you handle variadic functions?

All functions in Haskell take exactly one argument, so
there isn't really any such thing as a variadic function.
The argument can be a list, however, so you can get the
same effect.

-- 
Greg



More information about the Python-list mailing list