examples: use i64 in Fibonacci

pull/2521/head
Anders Nissen 2019-10-24 09:25:47 +02:00 committed by Alexander Medvednikov
parent baf49b2523
commit 1ce2acb4ef
1 changed files with 3 additions and 3 deletions

View File

@ -15,9 +15,9 @@ fn main() {
stop := os.args[1].int()
// Three consecutive terms of the sequence
mut a := 0
mut b := 0
mut c := 1
mut a := i64(0)
mut b := i64(0)
mut c := i64(1)
for i := 0; i < stop; i++ {
// Set a and b to the next term