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;
public program()
{
string s1 := "alphaBETA";
console.writeLine(s1.toLower(currentLocale));
console.writeLine(s1.toUpper(currentLocale));
console.readChar()
}