ENH: initial fortran

This commit is contained in:
Bill Hoffman 2004-08-06 15:05:00 -04:00
parent 9655299f08
commit 26a6b4bc01
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,2 @@
PROJECT(testf FORTRAN)
ADD_EXECUTABLE(testf hello.f)

6
Tests/Fortran/hello.f Normal file
View File

@ -0,0 +1,6 @@
PROGRAM GREETINGS
PRINT *, 'Real programmers write Fortran!'
END