8 lines
224 B
Text
8 lines
224 B
Text
Public Sub Main()
|
|
Dim stInfo As Stat = Stat(User.home &/ "input.txt")
|
|
Dim stInfo1 As Stat = Stat("/input.txt")
|
|
|
|
Print User.Home &/ "input.txt = " & stInfo.Size & " bytes"
|
|
Print "/input.txt = " & stInfo1.Size & " bytes"
|
|
|
|
End
|