Simple question. I'm using ruby 1.8.7. I could have sworn that I've written my functions at the bottom of my script before and it worked fine. Do I have to put them at the top? It seems to be the only way they work now. Not a big deal. I just prefer to have them at the bottom so I figured i'd ask. Thank you
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can do initializing code in one or more BEGIN-blocks (inherited from Perl, which inherited them from awk).
And for completeness, there are also END-blocks:
|
||||
|
|
Running this script in Ruby will give you:
So no, you can't have them at the bottom. As Ruby is an interpreted language, any code is parsed and processed at runtime ONLY. Therefore, you can only run code (call methods, use variables...) that have already been defined prior to the actual reference. |
|||||||
|