5 lines
60 B
Awk
5 lines
60 B
Awk
|
|
BEGIN {
|
||
|
|
a = "alphaBETA";
|
||
|
|
print toupper(a), tolower(a)
|
||
|
|
}
|