URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [string.f90] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
! Program to test string handling
program string
implicit none
character(len=5) :: a, b
character(len=20) :: c
a = 'Hello'
b = 'World'
c = a//b
if (c .ne. 'HelloWorld') call abort
if (c .eq. 'WorldHello') call abort
if (a//'World' .ne. 'HelloWorld') call abort
if (a .ge. b) call abort
end program
Go to most recent revision | Compare with Previous | Blame | View Log