import extensions; public Program() { var testString := "test"; Console.printLine(testString.Substring(1)); Console.printLine(testString.Substring(0, testString.Length - 1)); Console.printLine(testString.Substring(1, testString.Length - 2)) }