Here, another bad thing.
indexbase 0
Class Exponent
single Tab[20]
Method List(single a)
static sys i
Tab[i] = a
i +=1
End Method
Method Show(sys a) as single
Return Tab[a]
End Method
End Class
Exponent ex
a= pow(5,0) '1
ex.List a
a= pow(5,1) '5
ex.List a
a= pow(5,2) '25
ex.List a
a= pow(5,-2) '0,04
ex.List a
a= pow(-2,-3) '-0.125
ex.List a
For i=0 to 4
e = ex.show i
print e
Next