RosettaCodeData/Task/Comma-quibbling/PowerShell/comma-quibbling-3.psh

12 lines
145 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
$file = @'
ABC
ABC, DEF
ABC, DEF, G, H
'@ -split [Environment]::NewLine
foreach ($line in $file)
{
Out-Quibble -Text ($line -split ", ")
}