more index work

This commit is contained in:
Mark McGranaghan
2012-09-23 14:38:39 -07:00
parent 3474d39dc5
commit c19a29193e
112 changed files with 8 additions and 39 deletions

View File

@@ -1,12 +0,0 @@
// ## Bytes
package main
import "fmt"
func main() {
arr := []byte("some bytes")
str := string([]byte{'a', ' ', 's', 't', 'r', 'i', 'n', 'g'})
fmt.Println(arr)
fmt.Println(str)
}