Strings - ItsDeltin/Overwatch-Script-To-Workshop GitHub Wiki
Strings can be defined either with single quotes or double quotes.
"Hello!"
@"Hello!"
"{0} was killed by {1}!".Format([Victim(), Attacker()])
$"{Victim()} was killed by {Attacker()}!"
<"<0> was killed by <1>!", Victim(), Attacker()>