package SuperObjects; public class Main { public static void main(String[] args) { // super --> keyword refers to the superclass (parent) of an object very similar to the "this" keyword Hero hero1 = new Hero("Batman", 42, "$$$"); System.out.println(hero1); } }