up vote 2 down vote favorite
share [g+] share [fb]

I have a function 'foo' and a variable '$foo' referencing it.

function foo
{
    param($value)
    $value + 5
}

$foo = foo
$foo

I can call $foo without args, but how can I pass parameters? This does not work:

$foo 5
$foo(5)

Actually the goal is to write such code:

function bar {
  param($callback)
  $callback 5
}

bar(foo)
link|improve this question

67% accept rate
feedback

4 Answers

up vote 6 down vote accepted

The problem is when you do

$foo = foo

You put the result of the function in the variable $foo, not the function itself !

Try this :

$foo = get-content Function:\foo

And call it like this

& $foo 5

Hope it helps !

link|improve this answer
feedback

Use a script block.

# f.ps1

$foo = 
{
    param($value)
    $value + 5
}

function bar 
{
  param($callback)
  & $callback 5
}

bar($foo)

Running it:

> ./f.ps1
10
link|improve this answer
feedback

EDIT Misread the question the first time

What you need to do is use the & operator

& $foo 5
link|improve this answer
Actually you did not misread it, I just updated the question to be more clear :-) Btw, your solution still does not work... – alex2k8 Mar 26 '09 at 13:34
feedback

$foo = foo 5

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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