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)) }