This is why I always write my methods from bottom to top. This way I’ve always got a return statement and I use my variables before they are even declared.
That’s true, in fact I’ve started doing that myself. Same with methods, instead of going and writing the method and then coming back to use it, I’ll write the invocation first.
But are you gonna return something for this method??? You said you’d return an integer, yet there is no return statement!
and it had better be an integer! it had better be an integer, motherfucker!!
Well yea… If you write “return <object of some other type>” that is actually wrong, as opposed to just not having gotten around to filling it in yet
This is why I always write my methods from bottom to top. This way I’ve always got a return statement and I use my variables before they are even declared.
For a second there I thought you might be serious
I do actually use variables before I declare them most of the time. IDEs make it so easy to then generate the declaration with the correct type.
That’s true, in fact I’ve started doing that myself. Same with methods, instead of going and writing the method and then coming back to use it, I’ll write the invocation first.
Ah an avid dreambird user I see
Spotted the INTERCAL programmer.