Skip to content

Instantly share code, notes, and snippets.

@junbeom-kang
Created March 20, 2021 19:26
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