多选题
Given:
2. public class Epoch {
3. static int jurassic = 0;
4. public static void main(String[] args) {
5. assert(doStuff(5));
6. }
7. static boolean doStuff(int x) {
8. jurassic += x;
9. return true;
10. } }
Which are true? (Choose all that apply.)