mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 20:08:12 +02:00

- fix for-in loop for string const array - add some test from Alexander S. Klenin (issue #0014990) git-svn-id: trunk@14041 -
9 lines
119 B
ObjectPascal
9 lines
119 B
ObjectPascal
{mode objfpc}
|
|
{$apptype console}
|
|
var
|
|
ch: Char;
|
|
begin
|
|
for ch in ['a'..'c', '0'..'3', '_'] do
|
|
Writeln(ch);
|
|
end.
|