Hello everyone. I'm "playing" with Xojo and sometimes I'm struggling to find a way to do the things I do easily with other languages, in my case.. "python"!
How I do the string formatting in Xojo?
name = "John" surname = "Doe" age = 30 output = "I'am %s %s and I have %s years" % (name, surname, age)
Thank you