20 lines
426 B
Java
Raw Normal View History

2015-05-05 11:20:13 -07:00
//: references/Stringer.java
2015-05-29 14:18:51 -07:00
// <20>2015 MindView LLC: see Copyright.txt
2015-05-05 11:20:13 -07:00
public class Stringer {
public static String upcase(String s) {
return s.toUpperCase();
}
public static void main(String[] args) {
String q = new String("howdy");
System.out.println(q); // howdy
String qq = upcase(q);
System.out.println(qq); // HOWDY
System.out.println(q); // howdy
}
2015-05-18 23:05:20 -07:00
} /* Output:
howdy
HOWDY
howdy
*///:~