OSDN Git Service

2014/02/07 更新
[bacon/BaCon-Japanese.git] / 関数・命令 / REDIM.txt
index cdc7716..c017f94 100644 (file)
@@ -1,14 +1,13 @@
-  REDIM
+REDIM
 
-  【1.0 build 26 追加】
-   REDIM <var> TO <size>
+【1.0 build 26 追加】
+REDIM <var> TO <size>
 
-   Type: statement
+Type: statement
 
-   Redimensions a dynamic array to a new size. The contents of the array
-   will be preserved. If the array becomes smaller then the elements at the
-   end of the array will be cleared. The dynamic array has to be declared
-   previously using DECLARE or LOCAL. Example:
+配列のサイズを改めます。配列の中身は保存されます。
+含まれていた配列より小さな値が設定された場合、それを超える配列は消去されます。
+この入れるは DECLARE や LOCAL を用いて予め設定されていなければいけません。
+:
 
    REDIM a$ TO 20
-