Skip to content
Snippets Groups Projects
Select Git revision
  • 6aa341711c0bb14b061488ccf500b4797ec8a06d
  • 2022 default
  • 2021
  • master protected
  • 2021
5 results

hello.f90

Blame
  • hello.f90 130 B
    program hello
    
    implicit none
    
    integer :: thread_id = 0
    
    print '("Hello World from thread ", i0)', thread_id
    
    end program