summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/test/tforin16.pp
blob: 692c02c7aaab65a96e31f8a226b98c735dee19fe (plain)
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.