remove number for source

This commit is contained in:
Mark McGranaghan
2012-10-07 02:00:54 -04:00
parent beaad143c4
commit 2c4dea2b8e
134 changed files with 0 additions and 0 deletions

14
src/bytes/bytes.go Normal file
View File

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