Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm learning power shell and stuck with the problem

I have test.ps1:

Test

Function Test 
{
   $a="a"
}

when I execute it from commandline:

 PS > .\test.ps1 

I get an error

The term 'Test' is not recognized as the name of a cmdlet, function,

but when I move call to the Test function after the declaration of the function, it works fine.

Is there a way to load all the functions from the script before the execution of the script? It would be nice to keep the functions in the same file, after the main body of the script.

share|improve this question

1 Answer

up vote 3 down vote accepted

No, functions have to be declared first and called after that. I don't know any other language where it could be possible. But I can be mistaken.

Consider this:

function main {
 Test1
 Test2
}
function test {  ..body }
function test2 {  .. body }

main

Now the main body as at the top as you'd like..

share|improve this answer
That worked! thanks! Many compilers/interprters support loading the functions before everything else. PHP for examle would be fine with this layout. – trailmax Mar 2 '12 at 7:38
1  
VBScript is another one. Function definitions are read first so functions can be below the main logic. – Andy Arismendi Mar 2 '12 at 7:52
1  
Thx guys, I mostly work with compiled langs :) – stej Mar 2 '12 at 8:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.