Logo

Programming-Idioms

History of Idiom 165 > diff from v45 to v46

Edit summary for version 46 by tkoenig:
New Fortran implementation by user [tkoenig]

Version 45

2019-09-26, 18:40:13

Version 46

2019-09-26, 20:17:07

Idiom #165 Last element of list

Assign to variable x the last element of list items.

Idiom #165 Last element of list

Assign to variable x the last element of list items.

Code
x = items(ubound(items,1))