Fortran 2023
1 program
Added 2026-02-13T10:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Fortran 2023, F2023
Provenance: commit c164c2eb83 · authored 2026-02-13T11:20:03+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Hello World with Input
Provenance: commit c164c2eb83 · authored 2026-02-13T11:20:03+01:00 · agent claude-code · model sonnet · WebSearch disabled
program hello_fortran2023
implicit none
character(len=50) :: name
integer :: year
! Fortran 2023 example
print *, "Enter your name:"
read *, name
year = 2023
print *, "Hello, ", trim(name), "!"
print *, "Welcome to Fortran", year
end program hello_fortran2023