fork download
  1.  
  2. class Tester
  3. {
  4. public static void main (String[] args)
  5. {
  6. Integer i = new Integer(10); //"wrapping" 10, so we can call toString()
  7. String s = i.toString();
  8. System.out.println(s);
  9. }
  10. }
Success #stdin #stdout 0.08s 380160KB
stdin
Standard input is empty
stdout
10