Assem Medhat
Assem Medhat
```.f90 program pp character(10):: str str = "123456789 " call ss(str(3:6)) print *, str contains subroutine ss(str) character(3) :: str str = "abc" end subroutine end program pp ``` ```Console...
```.f90 program string_example implicit none character(:), allocatable :: greeting = "H" print *, greeting(1) end program string_example ``` ```.f90 program string_example implicit none integer, allocatable :: greeting = 1 end...
```.f90 module nested_17_mod type t integer :: i = 1 integer :: arr(2) = [10, 20] end type type(t), parameter :: t_param = t() contains end module program nested_17 use...
After merging this #8871, We'll be able to say that we have a good finalization process that's working properly (for fortran types). Here's a full todo to perfect it. -...
```.f90 program pp type t1 integer, allocatable :: ll end type type t2 type(t1),allocatable :: arr(:) end type t2 type t3 type(t2) ,allocatable :: z(:) end type call ss contains...
```.f90 program pp integer, allocatable :: arr(:) allocate(arr(10)) end program ``` snippet of the llvm output ```llvm %11 = ptrtoint %array* %10 to i32 %12 = icmp eq i32 %11,...