Development Class Java

public class Main {
  public static void main(String[] args) {
    StringBuffer sb = new StringBuffer("this is a test");
    System.out.println(sb);
    sb.reverse();
    System.out.println(sb);
  }
}
/*
this is a test
tset a si siht
*/