for example
@export var example: String = ""
var character = "John"
var number = 16
var food = "apples"
print(example)
but do this part in the editor
"%s ate %d %s today." % [character, number, food]
and have the result come out as
John ate 16 apples today.