I found it to be tense and interesting while playing. But looking back, I can’t really put my finger on what made it that way. I swam around and gathered resources to build boats, make food and fresh water - I can’t really ser what the big drive was. But I certainly loved it enough to finish it, which is rare for me regarding most games.
Could also be done recursive, I guess?
boolean isEven(int n) { if (n == 0) { return true; } else { return !isEven(Math.abs(n - 1)); } }