mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 04:48:02 +02:00
13 lines
132 B
ObjectPascal
13 lines
132 B
ObjectPascal
{$mode fpc}
|
|
|
|
operator :=(x:ShortInt)RESULT:ShortString;
|
|
begin
|
|
Val(RESULT,x);
|
|
end;
|
|
|
|
var
|
|
s:ShortString;
|
|
begin
|
|
s:=12;
|
|
end.
|