fork download
  1. public class Test
  2. {
  3. public static void Main()
  4. {
  5. const string name = "World";
  6. // Simple C# String interpolation:
  7. Console.WriteLine($"Hello {name}!");
  8. // C# String interpolation with string literals embedded:
  9. Console.WriteLine($"Hello {"*"+name+"*"}!");
  10. // Recursive C# String interpolation:
  11. Console.WriteLine($"Hello {"*"+name+ $"{ name+name}" }!");
  12. }
  13. }
  14.  
Success #stdin #stdout 0.05s 24400KB
stdin
Standard input is empty
stdout
Hello World!
Hello *World*!
Hello *WorldWorldWorld!