10 lines
199 B
Text
10 lines
199 B
Text
import system'culture;
|
|
|
|
public Program()
|
|
{
|
|
string s1 := "alphaBETA";
|
|
|
|
Console.writeLine(s1.toLower(currentLocale));
|
|
Console.writeLine(s1.toUpper(currentLocale));
|
|
Console.readChar()
|
|
}
|