System.out.println("Matching: (OS *> Linux, Android, IOS, Windows): " + ok);
ok = inst.match("(OS <* Linux, Android, IOS, Windows)") ;
System.out.println("Matching: (OS <* Linux, Android, IOS, Windows): " + ok);
ok = inst.match("(OS *> Linux, Android)") ;
System.out.println("Matching: (OS *> Linux, Android): " + ok);
ok = inst.match("(OS *> Android)") ;
System.out.println("Matching: (OS *> Android): " + ok);
ok = inst.match("(OS *> Android,)") ;
System.out.println("Matching: (OS *> Android,): " + ok);
ok = inst.match("(OS=Android)") ;
System.out.println("Matching: (OS=Android): " + ok);