Browse Source

* added example so it won't be forgotten

florian 20 years ago
parent
commit
6a3c06bb72
1 changed files with 13 additions and 0 deletions
  1. 13 0
      tests/webtbs/tw3227a.pp

+ 13 - 0
tests/webtbs/tw3227a.pp

@@ -0,0 +1,13 @@
+{$mode objfpc}
+uses 
+  Variants;
+
+var
+  a : array of longint;
+  v : variant;
+begin
+  setlength(a,1000);
+  v:=a;
+end.
+
+