I'd ideally like something like this:
byte things[10] = {1,4,5,6,13,14,15,16,10,12};
But as far as I can tell that doesn't work. Is there a way to do this that's not like this?
things[0] = 1
things[1] = 4
things[2] = 5
...
I'd ideally like something like this:
byte things[10] = {1,4,5,6,13,14,15,16,10,12};
But as far as I can tell that doesn't work. Is there a way to do this that's not like this?
things[0] = 1
things[1] = 4
things[2] = 5
...
This is part of the Promela language:
Simulate and verify