Skip to content

Instantly share code, notes, and snippets.

@jaredpar
Created February 28, 2014 19:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jaredpar/9278669 to your computer and use it in GitHub Desktop.
Save jaredpar/9278669 to your computer and use it in GitHub Desktop.
function f1() { return @("hello"); }
function f2() { return @("hello", "world"); }
$a = f1;
write-host $a.Length # prints 5
$a = f2;
write-host $a.Length # prints 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment