Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
20
Task/Input-loop/Wren/input-loop.wren
Normal file
20
Task/Input-loop/Wren/input-loop.wren
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import "io" for File
|
||||
|
||||
File.open("input.txt") { |file|
|
||||
var offset = 0
|
||||
var line = ""
|
||||
while(true) {
|
||||
var b = file.readBytes(1, offset)
|
||||
offset = offset + 1
|
||||
if (b == "\n") {
|
||||
// process 'line'
|
||||
line = "" // reset line variable
|
||||
} else if (b == "\r") { // Windows
|
||||
// wait for following "\n"
|
||||
} else if (b == "") { // end of stream
|
||||
return
|
||||
} else {
|
||||
line = line + b
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue