summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/test/tforin17.pp
blob: e482a4382b698e41d926af224d22962fe221a92e (plain)
1
2
3
4
5
6
{mode objfpc}
{$apptype console}
var ch: Char;
begin
  for ch in 'abc' do Writeln(ch);
end.