Skip to content

Instantly share code, notes, and snippets.

@idavis
Created August 3, 2012 18:16
Show Gist options
  • Select an option

  • Save idavis/3250131 to your computer and use it in GitHub Desktop.

Select an option

Save idavis/3250131 to your computer and use it in GitHub Desktop.
params([string]$message)
Write-Host $message
function write-something2 {
params([string]$messge)
Write-Host $message
}
function write-something3([string]$messge) {
Write-Host $message
}
@ferventcoder

Copy link
Copy Markdown
function write-something4() {
 params(
    [string] $message
   ,[string] $param2
 )
    Write-Host $message
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment