Java version of Stars

This commit is contained in:
Tim
2021-02-19 20:08:51 +10:30
parent 889b5e02c1
commit 0a412ff585
3 changed files with 262 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import java.lang.reflect.AnnotatedType;
public class StarsGame {
public static void main(String[] args) {
Stars stars = new Stars();
stars.play();
}
}