From 8da75285666cb00fd74cbd1c87dd668e2b3e09f6 Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Thu, 1 Nov 2012 08:51:28 -0700 Subject: [PATCH] trim out some marginal ideas for now --- examples.txt | 4 +--- examples/bytes/bytes.go | 12 ------------ 2 files changed, 1 insertion(+), 15 deletions(-) delete mode 100644 examples/bytes/bytes.go 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?