Skip to content

Instantly share code, notes, and snippets.

@cbilson
Created September 1, 2009 11:53
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save cbilson/179067 to your computer and use it in GitHub Desktop.
function Hello($name) {
"Hello, $name, from included file."
}
include Hello.ps1
task default -depends SayHello
task SayHello {
Hello "Joe King"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment