mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-28 19:33:50 +02:00
11 lines
131 B
ObjectPascal
11 lines
131 B
ObjectPascal
program Test;
|
|
operator :=(x:LongInt)RESULT:ShortString;
|
|
begin
|
|
Val(RESULT,x);
|
|
end;
|
|
var
|
|
s:ShortString;
|
|
begin
|
|
s:=12;
|
|
end.
|