Hacker News new | ask | show | jobs
by globular-toast 442 days ago
Yeah, people from statically typed languages sometimes can't understand how dynamically typed languages can even work. How can I do anything if I don't know what type to pass?! Because we write functions like "factorial(number)" instead of "int fac(int n)".
1 comments

I wish that's how python functions were written. What i usually see is `draw(**kwargs)`.