summaryrefslogtreecommitdiff
path: root/usr/rsc/fib/main.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-10-14 18:08:10 -0700
committerRuss Cox <rsc@golang.org>2009-10-14 18:08:10 -0700
commit3e916d927d418cbeca49e50077f99c88dc7751d7 (patch)
tree00952921c702b3e708c4b0085da2c1ccbe9dd680 /usr/rsc/fib/main.go
parent746fb9c39aa121b957c85a9242f9c29379fb72fc (diff)
downloadgolang-3e916d927d418cbeca49e50077f99c88dc7751d7.tar.gz
delete one cgo playpen
R=r DELTA=111 (0 added, 111 deleted, 0 changed) OCL=35739 CL=35744
Diffstat (limited to 'usr/rsc/fib/main.go')
-rw-r--r--usr/rsc/fib/main.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/usr/rsc/fib/main.go b/usr/rsc/fib/main.go
deleted file mode 100644
index 3ac5d5914..000000000
--- a/usr/rsc/fib/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2009 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import "fib"
-
-func main() {
- for i := 0; i < 10; i++ {
- println(fib.Fib(i));
- }
-}