Files
Nim/tests/arc/t17173.nim
flywind e1cc3b83fb deprecate newruntime (#17245)
* deprecate newruntime
* tests
* Update compiler/commands.nim
2021-03-04 19:33:16 +01:00

11 lines
128 B
Nim

discard """
matrix: "--gc:refc; --gc:arc"
"""
import std/strbasics
var a = " vhellov "
strip(a)
doAssert a == "vhellov"