Browse Source

no message

florian 22 years ago
parent
commit
34627e01fb
1 changed files with 12 additions and 0 deletions
  1. 12 0
      tests/tbs/tb0464.pp

+ 12 - 0
tests/tbs/tb0464.pp

@@ -0,0 +1,12 @@
+{ %version=1.1 }
+{$mode delphi}
+
+var
+  a1 : Array of Byte;
+
+begin
+  SetLength(a1,2);
+  a1[0]:=65;
+  a1[1]:=66;
+  WriteLn(AnsiString(a1));
+end.