vote up 1 vote down star

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)
flag

75% accept rate

4 Answers

vote up 6 vote down check

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|flag
vote up 2 vote down

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|flag
vote up 0 vote down

$foo = foo 5

link|flag
vote up 1 vote down

EDIT Misread the question the first time

What you need to do is use the & operator

& $foo 5
link|flag
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 at 13:34

Your Answer

Get an OpenID
or

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