// this is only syntactically valid DRL, so not ending with purely .drl
package ciao;
import java.lang.Number;
import java.lang.Long;

rule R1
when
    $p : Person( age >= 18 )
then
    System.out.println("hello");
    System.out.println("world");
    System.out.println("again");
end