summaryrefslogtreecommitdiff
path: root/usr/rsc/fib/main.go
diff options
context:
space:
mode:
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));
- }
-}