(String[] args)
| 6 | |
| 7 | public class OnePizza { |
| 8 | public static void main(String[] args) { |
| 9 | Pizza za = new Pizza(0); |
| 10 | System.out.println( |
| 11 | Timer.duration(() -> { |
| 12 | while(!za.complete()) |
| 13 | za.next(); |
| 14 | })); |
| 15 | } |
| 16 | } |
| 17 | /* Output: |
| 18 | Pizza 0: ROLLED |