blob: adc240278ccccf435e1643d3edce0031d8778b84 [file] [log] [blame]
program test3
implicit none
integer :: n
n = 1
! this is a comment
select case (n*2)
case (1)
go to 10
case (2)
go to 20
case (3)
go to 30
end select
! another comment
print *, "It wasn't handled"
stop
10 print *, "It was one"
stop
20 print *, "It was two"
stop
30 print *, "It was three"
stop
end program test3