Concat (Function) — Skript

Addon: Skript · Category: Function

Syntax

concat(texts: objects) :: string

Description

Joins the provided texts (and other things) into a single text.

Examples

concat("hello ", "there") # hello there
concat("foo ", 100, " bar") # foo 100 bar

View source