Java version of Stars

This commit is contained in:
Tim
2021-02-19 20:08:51 +10:30
parent 27a6dd1e8e
commit 28a4d56265
2 changed files with 251 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();
}
}