I think I've found a bug when using f-strings:
pc.text(f'count: {State.count}'),
count: {state.count}
pc.text('count: ' + State.count),
count: 123
I think I've found a bug when using f-strings:
outputs: while... outputs: (I'm otherwise using the counter example, just with a default value of 123.)