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