1 public class ReverseStringTest { 2 public static void main(String[] args) { 3 String str = "What's going on?"; 4 System.out.println(ReverseString.reverseIt(str)); 5 } 6 }