(String[] args)
| 3 | |
| 4 | public class GettingStarted { |
| 5 | public static void main(String[] args) { |
| 6 | App.start(() -> { |
| 7 | Window window = App.makeWindow(); |
| 8 | window.setEventListener(new EventHandler(window)); |
| 9 | window.setVisible(true); |
| 10 | }); |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | class EventHandler implements Consumer<Event> { |
no test coverage detected