mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:28:55 +02:00
12 lines
121 B
ObjectPascal
12 lines
121 B
ObjectPascal
{$mode objfpc}
|
|
program Project1;
|
|
|
|
uses
|
|
sysutils;
|
|
var
|
|
aValue: variant;
|
|
s: String;
|
|
begin
|
|
s := Trim( aValue );
|
|
end.
|