The following example does not work. It's reproducible on repl. https://svelte.dev/repl/80e0bfba5c364c9e9c5cfe6d792b8c50?version=3.5.1 ```html <script> let count = 0; function handleClick() { count += 1; } </script> <button on:click= {handleClick}> Clicked {count} {count === 1 ? 'time' : 'times'} </button> ```
The following example does not work. It's reproducible on repl.
https://svelte.dev/repl/80e0bfba5c364c9e9c5cfe6d792b8c50?version=3.5.1