net.connect, net.listen

This commit is contained in:
2025-07-26 13:21:37 +02:00
parent 65bdac2fe3
commit 9ae0230f5f
10 changed files with 97 additions and 150 deletions

View File

@@ -11,7 +11,7 @@ func rule110_step[state: Array] : Array
if i + 1 < state_len
right = state[i+1]
array.push(new_state, !((!left && !center && !right) || (left && !center && !right) || (left && center && right)))
array.push(new_state, !((!left & !center & !right) | (left & !center & !right) | (left & center & right)))
return new_state