VariablesΒΆ

Variables can be explicitly declared at any point in the program e.g

str = "A string"
num = 123456789

Variable type can be hinted but this requires the hint variable to be declared before hand

string str = "A string"
int num = 123456789