-
Notifications
You must be signed in to change notification settings - Fork 31
Open
@tjlizz
Description
func TestFib(t *testing.T) {
a:=1
b:=1
t.Log(a)
for i:=0;i<5 ;i++ {
t.Log("",b)
temp:=a
a=b
b=temp+a
}
}
func TestFib(t *testing.T) { a:=1 b:=1 t.Log(a) for i:=0;i<5 ;i++ { t.Log("",b) temp:=a a=b b=temp+a } }
Metadata
Metadata
Assignees
Labels
No labels