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

12 lines
145 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
$file = @'
ABC
ABC, DEF
ABC, DEF, G, H
'@ -split [Environment]::NewLine
foreach ($line in $file)
{
Out-Quibble -Text ($line -split ", ")
}