Difference between revisions of "Array.car()"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "* << Z3 Home * Z3 Language Documentation * Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member F...")
 
Line 7: Line 7:
  
 
Get the first element of the array.
 
Get the first element of the array.
 +
 +
A=1..100;
 +
A.head()
 +
 +
1

Revision as of 02:24, 15 April 2020


Array.car()

Get the first element of the array.

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

1