String case: Difference between revisions

no edit summary
m (syntax highlighting fixup automation)
No edit summary
Line 853:
Uppercase: ALPHABETA
Lowercase: alphabeta</pre>
 
 
=={{header|Beef}}==
<syntaxhighlight lang="csharp">
using System;
 
namespace StringCase
{
class Program
{
public static void Main()
{
String input = scope .("alphaBETA");
input.ToUpper();
Console.Writeln(input);
input.ToLower();
Console.Writeln(input);
}
}
}
</syntaxhighlight>
{{out}}
<pre>ALPHABETA
alphabeta</pre>
 
=={{header|Befunge}}==
29

edits