mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00
12 lines
135 B
ObjectPascal
12 lines
135 B
ObjectPascal
{ %OPT=-gw }
|
|
program Project1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
Var
|
|
S:String[100];
|
|
C:Char absolute S[1];
|
|
begin
|
|
s:='asdf';
|
|
writeln(s);
|
|
end.
|