Internet has a lot of open source code written in the Fortran programming language. Sometimes the 'intrinsic' keyword can be met in a code. I saw that the 'intrinsic' keyword can be used with 'use' keyword. Here is an example:
program main
use, intrinsic :: iso_fortran_env, only : int8, int16, int32, int64
implicit none
!
! Some code
!
end program main
I would like to understand better and more correctly the purpose of the application of this keyword in this context.