home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ANews 3
/
AnewsCD3.iso
/
DP
/
Programmation
/
PureBasic_Demo
/
Examples
/
Sources
/
File.pb
< prev
next >
Wrap
Text File
|
1999-10-10
|
587b
|
33 lines
;
; ********************************
;
; File example file for Pure Basic
;
; © 1999 - Fantaisie Software -
;
; ********************************
;
;
InitFile(0)
If CreateFile(0,"ram:PureBasic.test") ; Create a file and put some text in it.
;
WriteString("Hello I'm Pure Basic") ;
WriteString("What do you think of me ?") ;
CloseFile(0)
Endif
If ReadFile(0,"ram:PureBasic.test")
NPrint("Displaying string content:")
NPrint(ReadString())
NPrint(ReadString())
Endif
End ; File is automagically closed at the end.