summary refs log blame commit diff stats
path: root/tests/assign/tcopy.nim
blob: 1e5bc3cba0ea5acefdd09ca7dc30e6863befb099 (plain) (tree)
1
2
3
4



                                       













                                         

                                


                             

 
discard """
  file: "tcopy.nim"
  output: "TEMP=C:\\Programs\\xyz\\bin"
"""
# tests the substr proc

import
  strutils

proc main() =
  const
    example = r"TEMP=C:\Programs\xyz\bin"
  var
    a, b: string
    p: int
  p = find(example, "=")
  a = substr(example, 0, p-1)
  b = substr(example, p+1)
  writeLine(stdout, a & '=' & b)
  #writeLine(stdout, b)

main()
#OUT TEMP=C:\Programs\xyz\bin