Startseite > lang > array 
 en fr es it nl pl pt pt_BR mk sq ca hu cs tr ar fa id vi ko ja ru zh zh_TW eo
Zurück  Weiter  Bearbeiten  Umbenennen  Rückgängig  Suchen  Verwaltung  
Dokumentation  
Achtung! Diese Seite wurde noch nicht übersetzt.  Siehe englische Version 
Inline Arrays
Array = [ Expression [ , ... ] ]

Creates an array and returns it.

The type of the array is the type of the first Expression. The other expressions are automatically converted.

Beispiel

PRINT [ "A", "B", "C" ].Join("/")

A/B/C

PRINT Object.Type([ 2.4, 3, 3.2 ])

Float[]

PRINT Object.Type([ "2.4", 3, 3.2 ])

String[]

Siehe auch

Inline Collections, Native Arrays