summary refs log blame commit diff stats
path: root/tests/accept/run/tcopy.nim
blob: 3c7ccae4b80e6bc7498348c33424703380c1d583 (plain) (tree)
1
2
3
4
5
6
7
8



                                       


                      
           






                                          
                         






                               

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

import
  strutils

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

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