pascalabcnet/TestSuite/formatter_tests/should/formatstring1.pas

11 lines
137 B
ObjectPascal
Raw Permalink Normal View History

2018-05-20 12:37:43 +03:00
type
TRec = record
a: integer;
end;
begin
var x: TRec;
x.a := 2;
var s := $'Hello {x.a}';
assert(s = 'Hello 2');
end.