F90: Escrendo em um arquivo

From AdonaiMedrado.Pro.Br
Revision as of 14:42, 11 November 2008 by Adonaimedrado (Talk | contribs) (New page: <code lang="fortran"> PROGRAM aula OPEN(UNIT=10,FILE="aula.txt",STATUS="NEW") WRITE (10,*) "Ola!" CLOSE(10) END PROGRAM aula </code>)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
PROGRAM aula
	OPEN(UNIT=10,FILE="aula.txt",STATUS="NEW")
	WRITE (10,*) "Ola!"
	CLOSE(10)
END PROGRAM aula