diff --git a/examples.txt b/examples.txt index ec11b9e..af140aa 100644 --- a/examples.txt +++ b/examples.txt @@ -41,14 +41,12 @@ Sorting Sorting by Functions Panic Defer -# Recover Collection Functions String Functions String Formatting Regular Expressions -# Bytes +Bytes # JSON -# Protocol Buffers Time Epoch # Time Parsing / Formatting diff --git a/examples/bytes/bytes.go b/examples/bytes/bytes.go deleted file mode 100644 index 5460b24..0000000 --- a/examples/bytes/bytes.go +++ /dev/null @@ -1,12 +0,0 @@ -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?