This website requires JavaScript.
Explore
Help
Sign In
mirror
/
RosettaCodeData
mirror of
https://github.com/acmeism/RosettaCodeData.git
Watch
1
Star
0
Fork
You've already forked RosettaCodeData
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
bc1468fd69
RosettaCodeData
/
Task
/
Input-loop
/
Julia
/
input-loop.julia
7 lines
107 B
Plaintext
Raw
Blame
History
stream = IOBuffer("1\n2\n3\n4\n\n6")
while !eof(stream)
line = readline(stream)
println(line)
end
Reference in New Issue
View Git Blame
Copy Permalink