Hey Community,
I don’t know if its just me, but is there a way to have multiple parameters showing in textLabel. I don’t know how to word it exactly, but let me show you an example.
So in Java:
public static void main(String[] args) {
int num = 5; //integer number 5
System.out.println("Number: " + num); //pretty much similar to print() function
//outputs "Number: 5"
}
In that example, I am able to mix both a string and a integer, so my question is, how can i do the same thing, but in a text label, or is there another way?