summaryrefslogtreecommitdiff
path: root/tests/examplefiles/example.f90
blob: 40462189d7b726810f9cf1d8a23aced280ec0169 (plain)
1
2
3
4
5
6
7
8
program main
  integer, parameter :: mykind = selected_real_kind()
  print *, 1
  print *, 1_mykind
  print *, 1.
  print *, 1._mykind
  print *, (1., 1._mykind)
end program main