remove type hints from declarations

This commit is contained in:
2026-07-17 16:14:08 +02:00
parent 45171f688c
commit 165b5844de
13 changed files with 33 additions and 69 deletions

View File

@@ -8,7 +8,7 @@ func rule110_step[state: Array<bool>] : void
left := false
if i - 1 >= 0
left = state->nth(i - 1)
center : bool = state->nth(i)
center := state->nth(i)
right := false
if i + 1 < state->size
right = state->nth(i + 1)