7 lines
114 B

<script>
let text = 'Hello World';
export function updateText() {
text = 'Bye World';
}
</script>
{text}