i’m writing some rule for my simulation (some “law...
# random
l
i’m writing some rule for my simulation (some “law of nature”), most of them were suggested or autocompleted by github copilot. some of them are weird or useless but overall i’m still amazing by it. eg (copilot suggestion between []) :
Copy code
// collision between creatures [are resolved by a fight]
// if creature that are fighting [are of the same species, they reproduce]
🤣 5
i asked for more completion, i got : // if creature that are fighting are of the same species, they reproduce (if they have enough energy). Otherwise, the one with the most energy wins
true story 2
Copy code
// a creature can't eat itself.
👍 1
Copy code
// the only way [to get energy is to eat unless photosynthesis is implemented]
😮