/home/chloe/ASDV-Java/Semester 2/Assignments/lab8_2_ChloeFontenot/src/main/java/com/chloefontenot/lab8_2_chloefontenot/interfacesGrouped/fun/Religion.java
/*
 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Interface.java to edit this template
 */
package com.chloefontenot.lab8_2_chloefontenot.interfacesGrouped.fun;

/**
 *
 * @author chloe
 */
public interface Religion {
    public void practiceReligion();
    default void beforeChrist() {
        System.out.println("paganism");
    }
}