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

16 lines
320 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
import system'culture;
2015-11-18 06:14:39 +00:00
2019-09-12 10:33:56 -07:00
public program()
{
string s1 := "alphaBETA";
2015-11-18 06:14:39 +00:00
// Alternative 1
2019-09-12 10:33:56 -07:00
console.writeLine(s1.lowerCase());
console.writeLine(s1.upperCase());
2015-11-18 06:14:39 +00:00
// Alternative 2
2019-09-12 10:33:56 -07:00
console.writeLine(s1.toLower(currentLocale));
console.writeLine(s1.toUpper(currentLocale));
console.readChar()
}