/start.java Secret
Created
March 20, 2021 19:26
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package TemplateMethod; | |
public class start { | |
public static void main(String[] args) { | |
Alice alice = new Alice(); | |
Bob bob = new Bob(); | |
alice.printAward(); | |
System.out.println("\n"); | |
bob.printAward(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment