Return with a value

suggest change

(paraphrased from about_return)

The following methods will have the same values on the pipeline

function foo {
    $a = "Hello"
    return $a
}

function bar {
    $a = "Hello"
    $a
    return
} 

function quux {
    $a = "Hello"
    $a
}

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents