The print() function print the value of myVariable, which is 35.
The data type of myVariable is int. This means that myVariable can store any whole number. Whole numbers are numbers that do not have a decimal point.
void main() {
int myVariable = 35;
print(myVariable);
}
The result of the application code is shown below:
35