Guest User

Untitled

a guest
Jan 10th, 2015
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nim 0.13 KB | None | 0 0
  1.  
  2. #opt1
  3. let x = stdin.readAll
  4. echo "^ " & x
  5.  
  6. #opt2
  7. while not endoffile(stdin):
  8.     let x = stdin.readLine
  9.     echo "^ " & x
Advertisement
Add Comment
Please, Sign In to add comment