mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 17:30:59 +01:00
f45e2b70fd
This also includes elements of RFCs 2 and 3
12 lines
185 B
HTML
12 lines
185 B
HTML
<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> |