Skip to content

Repository files navigation

Fortran for Nexss Programmer 2.0

Data types

data type :: variable_name

integer :: x 
real :: x
complex :: x,y
logical :: x=.True. , logical :: x = .FALSE.
character :: x

Stdio

In Fortran stdio has different numeric representation:

  • stderr - 0
  • stdin - 5
  • stdout - 6
PROGRAM TEST
    WRITE(0,_) "stderr"
    WRITE(6,_) "hello to stdout"
    READ(*,fmt) something
END PROGRAM TEST

Useful links

About

Fortran implementation for Nexss Programmer

Resources

Code of conduct

Contributing

Stars

0 stars

Watchers

2 watching

Forks

Releases

Packages

Contributors

Languages