alias testcount {
var %string = $input(put some quote delimited text in here,e)
var %quantity = $count(%string,$chr(34))
echo -a . %quantity
if (2 \\ %quantity) { echo -a odd }
elseif (2 // %quantity) { echo -a even }
else { echo -a error: no quotes }
}