mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
8 lines
185 B
Nim
8 lines
185 B
Nim
import nre, unittest
|
|
|
|
block: # escape strings
|
|
block: # escape strings
|
|
check("123".escapeRe() == "123")
|
|
check("[]".escapeRe() == r"\[\]")
|
|
check("()".escapeRe() == r"\(\)")
|