Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
10
Task/Read-entire-file/FreeBASIC/read-entire-file.freebasic
Normal file
10
Task/Read-entire-file/FreeBASIC/read-entire-file.freebasic
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
' FB 1.05.0 Win64
|
||||
|
||||
Open "input.txt" For Input Encoding "ascii" As #1
|
||||
Dim fileLen As LongInt = Lof(1) '' get file length in bytes
|
||||
Dim buffer As String = Space(fileLen) '' allocate a string of size 'fileLen' bytes
|
||||
Get #1, 1, buffer '' read all data from start of file into the buffer
|
||||
Print buffer '' print to console
|
||||
buffer = "" '' release memory used by setting buffer to empty
|
||||
Close #1
|
||||
Sleep
|
||||
Loading…
Add table
Add a link
Reference in a new issue