Strings - ItsDeltin/Overwatch-Script-To-Workshop GitHub Wiki

Strings can be defined either with single quotes or double quotes.

Syntax

"Hello!"

Localized

@"Hello!"

Formatting

"{0} was killed by {1}!".Format([Victim(), Attacker()])

Interpolated

$"{Victim()} was killed by {Attacker()}!"

Classic syntax

<"<0> was killed by <1>!", Victim(), Attacker()>

⚠️ **GitHub.com Fallback** ⚠️