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

16 lines
320 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import system'culture;
public program()
{
string s1 := "alphaBETA";
// Alternative 1
console.writeLine(s1.lowerCase());
console.writeLine(s1.upperCase());
// Alternative 2
console.writeLine(s1.toLower(currentLocale));
console.writeLine(s1.toUpper(currentLocale));
console.readChar()
}