Skip to content

Instantly share code, notes, and snippets.

@Ark-kun
Ark-kun / gist:9279034
Last active August 29, 2015 13:56 — forked from jaredpar/gist:9278669
function f1() { return @("hello"); }
function f2() { return @("hello", "world"); }
$a = @(f1);
write-host $a.Length # prints 1
$a = @(f2);
write-host $a.Length # prints 2