Home | History | Annotate | Download | only in ken

Lines Matching refs:string

7 // Test string operations including printing.
12 var c string
72 /* create string with integer constant */
73 c = string('x')
78 /* create string with integer variable */
80 c = string(v)
85 /* create string with byte array */
90 c = string(z1[0:])
95 /* create string with int array */
100 c = string(z2[0:])
105 /* create string with byte array pointer */
110 c = string(z3[0:])