Search found 1 match

by kevin
Thu Aug 31, 2006 5:13 pm
Forum: Code Folding
Topic: fortran problem
Replies: 1
Views: 31071

fortran problem

I am new to fortran, so I don't know if this is my problem or the editor's(3.95a). I was just testing out a program on the editor.
MODULE Triangle_Operations
IMPLICIT NONE
CONTAINS
FUNCTION Area(x,y,z)
REAL :: Area ! function type
REAL, INTENT( IN ) :: x, y, z
REAL :: theta, height
theta ...