8 lines
247 B
Text
8 lines
247 B
Text
$paramLists = @(@{Name='mary'; Female=$true; Item="little lamb"},
|
|
@{Name='hank'; Male=$true; Item="shank"},
|
|
@{Name='foo'; Male=$true; Item="bar"})
|
|
|
|
foreach ($paramList in $paramLists)
|
|
{
|
|
New-MadLibs @paramList
|
|
}
|