Skip to content

Instantly share code, notes, and snippets.

@v1kko
Last active February 2, 2022 12:48
Show Gist options
  • Save v1kko/79cf41e60abf8c32a7da720a54c451b7 to your computer and use it in GitHub Desktop.
Save v1kko/79cf41e60abf8c32a7da720a54c451b7 to your computer and use it in GitHub Desktop.
code_8
# We will come back to the -fimplicit-none later
> gfortran -c -Werror=implicit-interface hello_world.f90
> gfortran -Werror=implicit-interface main.f90 -o hello_world
main.f90:3:31:

  3 |   call hello_world("You there")
    |                               1
Error: Type mismatch in argument ‘name’ at (1); passed CHARACTER(1) to INTEGER(4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment