module main fn main() { a := 'Hello, ' b := 'World!' c := a + b d := [a, b, c] println(d.len) }