github.com/llvm-mirror/llgo@v0.0.0-20190322182713-bf6f0a60fce1/test/execution/strings/index.go (about)

     1  // RUN: llgo -o %t %s
     2  // RUN: %t 2>&1 | FileCheck %s
     3  
     4  // CHECK: 97 98 99
     5  
     6  package main
     7  
     8  func main() {
     9  	s := "abc"
    10  	println(s[0], s[1], s[2])
    11  }