Comment on
Then they must care a decent amount.
while ($care < 0) {$care–}
<? This would take any negative value and decrease it forever, but leave all positive and zero values alone, right?
maybe the integer will wrap around to max int and stop
some_kind_of_guy@lemmy.world 3 weeks ago
while ($care < 0) {$care–}
MajorasTerribleFate@lemmy.zip 3 weeks ago
<? This would take any negative value and decrease it forever, but leave all positive and zero values alone, right?
TechnoCat@lemmy.ml 3 weeks ago
maybe the integer will wrap around to max int and stop