Update foundation example to query whether the array contains

specified objects.
This commit is contained in:
Greg 2019-04-30 10:34:56 -04:00
parent e6232bdccb
commit 380fee39bf
1 changed files with 2 additions and 0 deletions

View File

@ -16,4 +16,6 @@ func main() {
n3 := ns.StringWithUTF8String(ns.CharFromString("ok bye"))
a := ns.ArrayWithObjects(n1,n2,n3)
fmt.Println("Length(a) = ",a.Count())
fmt.Println("is n2 in a?",a.ContainsObject(n2))
fmt.Println("is c1 in a?",a.ContainsObject(c1))
}