mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
26 lines
397 B
Nim
26 lines
397 B
Nim
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
|
|
|
|
|