RosettaCodeData/Task/String-case/Elena/string-case.elena

11 lines
199 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import system'culture;
2026-02-01 16:33:20 -08:00
public Program()
2023-07-01 11:58:00 -04:00
{
string s1 := "alphaBETA";
2026-02-01 16:33:20 -08:00
Console.writeLine(s1.toLower(currentLocale));
Console.writeLine(s1.toUpper(currentLocale));
Console.readChar()
2023-07-01 11:58:00 -04:00
}