mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-01-11 20:55:40 -08:00
10 lines
177 B
Java
10 lines
177 B
Java
import java.lang.reflect.AnnotatedType;
|
|
|
|
public class StarsGame {
|
|
|
|
public static void main(String[] args) {
|
|
Stars stars = new Stars();
|
|
stars.play();
|
|
}
|
|
}
|