String case: Difference between revisions

Content added Content deleted
Line 14: Line 14:
Put_Line(To_Lower(S));
Put_Line(To_Lower(S));
end Upper_Case_String;
end Upper_Case_String;

==[[Forth]]==
[[Category:Forth]]

create s ," abc123"
s count type \ shows: abc123
s count 2dup upper type \ shows: ABC123
s count 2dup lower type \ shows: abc123


==[[JavaScript]]==
==[[JavaScript]]==