C To see if handling of strings that are split across lines is done right C23456789012345678901234567890123456789012345678901234567890123456789012 character*255 S,T,U,V S = '12345678901234567890123456789012345678901234567890123456789012 $ 12345678901234567890123456789012345678901234567890123456789012' write(*,*) S T = '12345678901234567890123456789012345678901234567890123456789012 $ $x12345678901234567890123456789012345678901234567890123456789012' write(*,*) T U = '123456789012345678901234567890123456789012345678901234567890' $'12345678901234567890123456789012345678901234567890123456789012' write(*,*) U U = '123456789012345678901234567890123456789012345678901234567890' $ $'12345678901234567890123456789012345678901234567890123456789012' write(*,*) U V = '123456789012345678901234567890123456789012345678901234567890' $// 'hello' write(*,*) V end