|
|
|
|
|
by crazygringo
5021 days ago
|
|
The thing that will really bite you is when you call a function: some_function arg_a
And then later on, decide it doesn't need an argument after all, and simply delete it: some_function
And then discover it doesn't work, because you have to remember to add the parentheses back in: some_function()
It's the little inconsistencies like that which keep driving you nuts... :) |
|