//ww:run-exit 2 package main; export fn main() i32 = { let a: str = "abc"; let b: str = "de"; let t: [2]str = [a, b]; return t[1].len: i32; };