So I'm new and confused.
var gravitational_constant = 6.67e-11
var mass = 1.1e15
var test = 0.000000000667
print(gravitational_constant)
print(6.67e-11)
print(test)
print(mass)
print(1.e15)
and i get this
0
0
0
0
1000000000000000
So from what I gather var is enough to assign a large number, but not using scientific notation? but print() accepts it?
Also how do I assign small float values not even the print function recognises that one?