Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. package uk.ac.cam.cwjg4.game_of_life;
  2.  
  3. public class Rule {
  4.  
  5. static Rule gameOfLife() {
  6. throw new UnsupportedOperationException();
  7. }
  8.  
  9. static Rule highLife() {
  10. throw new UnsupportedOperationException();
  11. }
  12.  
  13. static Rule seeds() {
  14. throw new UnsupportedOperationException();
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement