mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 08:49:33 +02:00
13 lines
163 B
ObjectPascal
13 lines
163 B
ObjectPascal
{ %fail }
|
|
{ %opt=-Sew }
|
|
var
|
|
I : longint;
|
|
Somestring : string;
|
|
|
|
begin
|
|
Somestring:='asdf';
|
|
I := 1;
|
|
While Not (Somestring[I] in ['#'..#0]) Do Inc(I);
|
|
end.
|
|
|