Difference between revisions of "F90: Escrendo em um arquivo"

From AdonaiMedrado.Pro.Br
Jump to: navigation, search
(New page: <code lang="fortran"> PROGRAM aula OPEN(UNIT=10,FILE="aula.txt",STATUS="NEW") WRITE (10,*) "Ola!" CLOSE(10) END PROGRAM aula </code>)
 
(No difference)

Latest revision as of 14:42, 11 November 2008

PROGRAM aula
	OPEN(UNIT=10,FILE="aula.txt",STATUS="NEW")
	WRITE (10,*) "Ola!"
	CLOSE(10)
END PROGRAM aula