Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
12
Task/Input-loop/VBScript/input-loop.vb
Normal file
12
Task/Input-loop/VBScript/input-loop.vb
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
filepath = "SPECIFY PATH TO TEXT FILE HERE"
|
||||
|
||||
Set objFSO = CreateObject("Scripting.FileSystemObject")
|
||||
Set objInFile = objFSO.OpenTextFile(filepath,1,False,0)
|
||||
|
||||
Do Until objInFile.AtEndOfStream
|
||||
line = objInFile.ReadLine
|
||||
WScript.StdOut.WriteLine line
|
||||
Loop
|
||||
|
||||
objInFile.Close
|
||||
Set objFSO = Nothing
|
||||
Loading…
Add table
Add a link
Reference in a new issue