10 lines
261 B
Text
10 lines
261 B
Text
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))
|
|
}
|