URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [string.f90] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
! Program to test string handlingprogram stringimplicit nonecharacter(len=5) :: a, bcharacter(len=20) :: ca = 'Hello'b = 'World'c = a//bif (c .ne. 'HelloWorld') call abortif (c .eq. 'WorldHello') call abortif (a//'World' .ne. 'HelloWorld') call abortif (a .ge. b) call abortend program
Go to most recent revision | Compare with Previous | Blame | View Log
