On Thu, 12 Mar 2015, Tobias Boege wrote:
> [...] attached script [...]
> 

This time!

-- 
"There's an old saying: Don't change anything... ever!" -- Mr. Monk
#!/usr/bin/gbs3

Public Sub Main()
  Dim sPath As String = Temp$("with spaces")
  Dim hFile As Stream
  Dim sLine As String

  File.Save(sPath, "some string")

  Debug "Path =";; sPath
  Debug "Exist =";; Exist(sPath)
  Debug "Content ="
  hFile = Open sPath For Input
  For Each sLine In hFile.Lines
    Debug "  "; sLine
  Next
  Close #hFile
End
------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Gambas-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to