update: slices 23th exercise

This commit is contained in:
Inanc Gumus
2019-08-18 12:59:50 +03:00
parent 4b2d2a3d6b
commit dfca449457
4 changed files with 52 additions and 39 deletions

View File

@ -17,6 +17,6 @@ func main() {
temps := api.Read(0, 3)
temps = append(temps, []int{1, 3}...)
fmt.Println("API's readings:", api.All())
fmt.Println("Your readings :", temps)
fmt.Println("api.temps :", api.All())
fmt.Println("main.temps :", temps)
}