templateLiteral
import { templateLiteral } from "https://raw.githubusercontent.com/Hatscat/MetavaScript/main/index.ts";
String template literal
@example
// returns "`hello ${name}!`"
templateLiteral(["hello ", "name", "!"])
function templateLiteral(alternatedTextsAndExpressions: string[]): string;