5 lines
97 B
ObjectPascal
5 lines
97 B
ObjectPascal
function f := default(string);
|
|
begin
|
|
var s := (f??'').PadRight(3);
|
|
assert(s = ' ');
|
|
end. |