t17173.nim 128 B

1234567891011
  1. discard """
  2. matrix: "--gc:refc; --gc:arc"
  3. """
  4. import std/strbasics
  5. var a = " vhellov "
  6. strip(a)
  7. doAssert a == "vhellov"