blob: b14e34312c1613df07a7ce2f8f6b9cb21da55f50 [file] [log] [blame]
program p !<<<<<START
read *, i
SELECT CASE (i)
CASE (1)
print *, "One"
CASE (2)
print *, "Two"
CASE (3)
print *, "Three"
CASE DEFAULT
print *, "Not one, two, or three"
END SELECT
end program !<<<<<END