1 2 3 4 5 6 7
{mode objfpc} {$apptype console} const S = 'abc'; var ch: Char; begin for ch in S do Writeln(ch); end.