summaryrefslogtreecommitdiff
path: root/usr/rsc/gmp/main.go
blob: 0b25d25447893e406f1e1639930f1365a520bad1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 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 big "gmp"
//import "big"
import "fmt"

func Fib(n int) *big.Int {
	a := big.NewInt(0);
	b := big.NewInt(1);

	for i := 0; i < n; i++ {
		a, b = b, a;
		b.Add(a, b);
	}

	return b;
}

func main() {
	for i := 0; i <= 100; i++ {
		fmt.Println(5*i, Fib(5*i));
	}
}