Difference between revisions of "Array.car()"

From ZCubes Wiki
Jump to navigation Jump to search
Line 12: Line 12:
  
 
1
 
1
 +
 +
A=32..789;
 +
A.car()
 +
 +
32

Revision as of 02:26, 15 April 2020


Array.car()

Get the first element of the array.

A=1..100; A.head()

1

A=32..789; A.car()

32