public static void Main()
string test = "test var";
Console.WriteLine("{test}");
Console.WriteLine(@"{test}");
Console.WriteLine(@"{{test}}");
Console.WriteLine($"var value: {test}");
Console.WriteLine("\nCombination of interpolation ($) and verbatim (@):");
Console.WriteLine($@"both: {{test}}");
Console.WriteLine(@$"both, reversed: {{test}}");
this is an unformatted string
Use "regular quotes" without doubling them to escape!
Console.WriteLine(test2);
test2 = """Still a raw string literal\n! no escaping "needed!"\nyay""";
Console.WriteLine(test2);