

Hmmh. Yeah some people add it to the mix. I mean we’ve had revolution happen. It’s not like it is just a theory. I guess people just need to pay attention in history class. Learn what reform and revolution is… Consequences thereof… And it’s not like we’re close to anything like that. At least not here.
I think that bible tale mostly showcases how people already knew thousands of years ago, how life is a constant up and down. And you have to find ways to deal with it. It’s probably not exactly about that. As far as I remember they also had weather patterns back then and effects on agriculture. Plus it’s an old story about God’s supposed favorite tribe, their hardship and how they were able to prevail. It’s not the same thing as the doomerism baked into Christianity, due to early days and those teachings.
Probabably also doesn’t matter unless we invite Peter Thiel over. CDU isn’t really Christian in any way. At least not on a federal level.






You’ll get there. If you’re struggling to remember what to do and in what order… I’d say keep things simple. Re-visit the needed concepts. In case of a number guessing game, that’ll probably be conditions, loops, input and output, storing numbers. Make sure you understand each if those individually.
First, write a program which just echoes the input. You could write a separate program which just has two fixed numbers and compares them. You can then extend it to also read one of the numbers from user input. And you’re half-way there.
Also make sure you can do those simple things half a day later, without the textbook opened.
I’d tackle the loops seperately (if that’s contained in this example). Get comfortable with them. Start with a program that just counts from 0 to 99 and outputs all the numbers. You can then combine that with other concepts, like output “tomato” if a number is divisible by 6. Or if it’s less than, greater than or equal something.
And if you don’t get the loops… Just tell the user they have 10 tries and copy-paste your code ten times. That’ll do it as well. And you can work your way up from there.
I think once you have a grasp of what all these things do, and you did a few super simple things with them on your own, it’ll be more clear what to do with more complex things. In this case probably: loop. And inside of that loop, ask for a number, compare it to the secret number, and decide what to output on a condition. That’s roughly an average number guessing game. I think you just need to tinker a bit more with each of the 5 concepts that get combined here.