Skip to content

Instantly share code, notes, and snippets.

@megamorf
Created December 13, 2016 15:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save megamorf/10494d4245c529365555ae90d478fcc4 to your computer and use it in GitHub Desktop.
Save megamorf/10494d4245c529365555ae90d478fcc4 to your computer and use it in GitHub Desktop.
Echo-Args PowerShell
function Echo-Args
{
for($i=0;$i -lt $args.length;$i++)
{
"Arg $i is <$($args[$i])>"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment