Fortran 90 is a programming language created in 1990.
#2549on PLDB | 34Years Old |
Feature | Supported | Example | Token |
---|---|---|---|
Pointers | ✓ | type real_list_t real :: sample_data(100) type (real_list_t), pointer :: next => null () end type type (real_list_t), target :: my_real_list type (real_list_t), pointer :: real_list_temp real_list_temp => my_real_list do read (1,iostat=ioerr) real_list_temp%sample_data if (ioerr /= 0) exit allocate (real_list_temp%next) real_list_temp => real_list_temp%next end do |