29 lines
		
	
	
		
			539 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			539 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// For more tutorials: https://blog.learngoprogramming.com
 | 
						|
//
 | 
						|
// Copyright © 2018 Inanc Gumus
 | 
						|
// Learn Go Programming Course
 | 
						|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
 | 
						|
//
 | 
						|
 | 
						|
package main
 | 
						|
 | 
						|
import "fmt"
 | 
						|
 | 
						|
func main() {
 | 
						|
	prev := [3]string{"Kafka's Revenge", "Stay Golden", "Everythingship"}
 | 
						|
 | 
						|
	// You can't do this:
 | 
						|
	// books = prev
 | 
						|
 | 
						|
	var books [4]string
 | 
						|
 | 
						|
	for i, b := range prev {
 | 
						|
		books[i] += b + " 2nd Ed."
 | 
						|
	}
 | 
						|
 | 
						|
	books[3] = "Awesomeness"
 | 
						|
 | 
						|
	fmt.Printf("last year:\n%#v\n", prev)
 | 
						|
	fmt.Printf("\nthis year:\n%#v\n", books)
 | 
						|
}
 |