summary refs log blame commit diff stats
path: root/tests/js/t20235.nim
blob: 3a69c2bd61d207a9ee12ba79494271961965d3c2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                           
discard """
  action: "run"
  output: "0 4"
"""

proc main =
  var s = ""
  s.setLen(4)
  echo s[0].ord, " ", s.len

main()