mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 19:02:18 +00:00
20 lines
328 B
Nim
20 lines
328 B
Nim
# 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
|