mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 19:22:40 +00:00
16
tests/cpp/t6986.nim
Normal file
16
tests/cpp/t6986.nim
Normal file
@@ -0,0 +1,16 @@
|
||||
discard """
|
||||
targets: "cpp"
|
||||
action: "compile"
|
||||
"""
|
||||
|
||||
import sequtils, strutils
|
||||
|
||||
|
||||
let rules = toSeq(lines("input"))
|
||||
.mapIt(it.split(" => ").mapIt(it.replace("/", "")))
|
||||
.mapIt((it[0], it[1]))
|
||||
|
||||
|
||||
proc pp(s: string): auto =
|
||||
toSeq(lines(s)).mapIt(it.split(" => ").mapIt(it.replace("/", ""))).mapIt((it[0], it[1]))
|
||||
echo pp("input")
|
||||
Reference in New Issue
Block a user