1 package net.sf.jhunlang.jmorph.app;
2
3 import net.sf.jhunlang.jmorph.synth.Generator;
4
5 public class Der extends Gen
6 {
7 public static void main(String[] args)
8 throws Exception
9 {
10 Gen der = new Gen("Derivator");
11 der.configure(load(args, Generator.DERIVATION));
12 der.setVisible(true);
13 }
14 }