123456789101112131415161718192021 |
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package qucikprogs;
- import org.yaml.snakeyaml.Yaml;
- /**
- *
- * @author iZc <nplusc.de>
- */
- public class Overflower
- {
- public static void main(String[] args)
- {
- System.out.println(new Yaml().dump(new java.awt.Point()));
- }
- }
|