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