0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
svelte/test/runtime/samples/reactive-values/main.html

12 lines
185 B
HTML
Raw Normal View History

<script>
export let a = 1;
export let b = 2;
export let c;
export let cSquared;
$: c = a + b;
$: cSquared = c * c;
</script>
<p>{a} + {b} = {c}</p>
<p>{c} * {c} = {cSquared}</p>