about summary refs log tree commit diff stats
path: root/themes/shade
Commit message (Expand)AuthorAgeFilesLines
* Added themes supplied by p41nm47r1xJames Booth2014-04-111-0/+36
'#n13'>13 14 15 16
discard """
  file: "tstdin.nim"
  output: "10"
"""
import osproc, os, streams

doAssert fileExists(getCurrentDir() / "tests" / "osproc" / "ta.exe")

var p = startProcess("ta.exe", getCurrentDir() / "tests" / "osproc")
p.inputStream.write("5\n")
while true:
  let line = p.outputStream.readLine()
  if line != "":
    echo line
  else:
    break