Overflower.java 449 B

123456789101112131415161718192021
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package qucikprogs;
  7. import org.yaml.snakeyaml.Yaml;
  8. /**
  9. *
  10. * @author iZc <nplusc.de>
  11. */
  12. public class Overflower
  13. {
  14. public static void main(String[] args)
  15. {
  16. System.out.println(new Yaml().dump(new java.awt.Point()));
  17. }
  18. }