TestMatrixSubroutineOperators.f90 Source File


Contents


Source Code

program mat_subop_test
    ! Test the subroutine operators for matrices

use matrix_m
use vector_m
use iso_fortran_env, only: real64

implicit none

    type(matrix) :: m1, m2, m3

end program