Hi
In printf you can build strings for printing in a way similar to eg Python.
Is there something like
giving the value "Variable age = 56.35" to x in Mata?
In printf you can build strings for printing in a way similar to eg Python.
Is there something like
Code:
x = "Variable %s = %6.2f" % (age, 56.34567)
Comment