|
|
|
|
|
by fermienrico
2134 days ago
|
|
We might as well chuck away "def" for a function signature. When I started learning python way back, this particular aspect of Python was an eye-sore. Why wouldn't they use any one of these: func, function, fun, etc. or just like C, no need for a word. void foo(){} is already sufficient structure to indicate that its a function. |
|
I once designed a Python-like language and used `function`, because the language made a distinction between `function`s and `method`s.