blob: cc13bdd15f661e782b8942cf4643c8806dd63fa7 [file] [log] [blame]
package rofitests;
public team class RoFiTeam {
void doit() {
System.out.println("doit");
RoFiRole rfr = new RoFiRole();
rfr.doRolish();
}
public static void main(String[] args) {
RoFiTeam rft = new RoFiTeam();
rft.doit();
}
}