Skip to content

Instantly share code, notes, and snippets.

@v1kko
v1kko / signature.f90
Created February 2, 2022 12:27
code_3
subroutine hello_world(name : character(len=*))
@v1kko
v1kko / compile.sh
Created February 2, 2022 12:25
code_2
> gfortran main.f90 hello_world.f90 -o hello_world
> ./hello_world
Hello World 544567129
@v1kko
v1kko / hello_world.f90
Last active February 2, 2022 12:23
code_1
subroutine hello_world(name)
write(*,*) "Hello World: ", name
end subroutine