Top 1,000 Features Creators Resources Blog Explorer Download
GitHub icon

Fortran 90

< >

Fortran 90 is a programming language created in 1990.

#2286on PLDB 34Years Old


Language features

Feature Supported Token Example
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

View source

- Build the next great programming language · About · Acknowledgements · Extensions · Day 630 · Donate · feedback@pldb.io