package main

import "fmt"

func main() {
    a := "my string"
    b := make([]int, 2, 7)
    fmt.Println(a, b)  // stop here
}