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

12 lines
145 B
PowerShell
Raw Permalink Normal View History

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