RosettaCodeData/Task/Comma-quibbling/PowerShell/comma-quibbling-3.ps1
2026-04-30 12:34:36 -04:00

11 lines
145 B
PowerShell

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