1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-04 04:50:22 +00:00

Fix path for file in test for *nix

This commit is contained in:
Samuel Gomes 2022-12-31 05:40:39 +05:30
parent da9d9e871c
commit b2723cf057

View file

@ -3,7 +3,7 @@ Option _Explicit
Option _ExplicitArray
Dim f As Long: f = FreeFile
Open "test.mp3" For Binary Access Read As f
Open "./test.mp3" For Binary Access Read As f
Dim buffer As String: buffer = Input$(LOF(f), f)
Print "Size ="; Len(buffer)