Logo

Programming-Idioms

History of Idiom 171 > diff from v15 to v16

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

Version 15

2019-09-26, 14:36:37

Version 16

2019-09-27, 08:39:49

Idiom #171 Add an element at the end of a list

Append element x to the list s.

Idiom #171 Add an element at the end of a list

Append element x to the list s.

Extra Keywords
push grow
Extra Keywords
push grow
Code
real, allocatable, dimension(:) :: s

s = [s, x]