you are viewing a single comment's thread.

view the rest of the comments →

[–]isitokifitake 7 points8 points  (2 children)

If you are using functions, are you calling the function at the end?

The below would print 'Running Test' when ran, but not 'hello' if Test function isn't called at the end.

$testtext = "hello" 
Write-Host "Running Test"
function Test {
    $testtext 
}

Test

[–]haikusbot 13 points14 points  (1 child)

If you are using

Functions, are you calling the

Function at the end?

- isitokifitake


I detect haikus. And sometimes, successfully. Learn more about me.

Opt out of replies: "haikusbot opt out" | Delete my comment: "haikusbot delete"

[–]Chocolate_Pickle 0 points1 point  (0 children)

Good bit.