I was reading someone's java code and came across this declaration:
private float x = 34f, y = 34f;
What does the f stand for? I have never seen this type of declaration before. I can easily assume that it stands for "float" since the type is float, but that's just a wild guess.
Any explanation would be helpful, thanks in advance.