Fortran 2008

1 program Added 2026-02-11T12:55:24Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Fortran 2008, F2008
Provenance: commit 32ffd7a6a0 · authored 2026-02-11T13:56:17+01:00 · agent claude-code · model sonnet

Sources mentioning this language

2 sources · pl_id: pl/fortran-2008
LLM (this repo) · 1Wikidata · Q28555829

Related languages

Fortran 2018 (0.64)Fortran 2023 (0.55)Fortran 2003 (0.48)Fortran (0.42)FORTRAN II (0.39)

LLM-contributed programs

DO CONCURRENT Array Addition

Provenance: commit 32ffd7a6a0 · authored 2026-02-11T13:56:17+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.f90 · added: 2026-02-11T12:55:24Z
program concurrent_example
  implicit none
  integer, parameter :: n = 1000
  real :: a(n), b(n), c(n)
  integer :: i

  ! Initialize arrays
  do i = 1, n
    a(i) = real(i)
    b(i) = real(i) * 2.0
  end do

  ! Fortran 2008 DO CONCURRENT - allows parallel execution
  do concurrent (i = 1:n)
    c(i) = a(i) + b(i)
  end do

  ! Print first and last elements
  print *, "First element: c(1) = ", c(1)
  print *, "Last element: c(n) = ", c(n)
  print *, "Sum of all elements: ", sum(c)

end program concurrent_example

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about Fortran 2008 (mapped to pl/fortran-2008). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Fortran 2008/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Fortran 2003 Fortran 2018 →