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
15 lines
182 B
HTML
15 lines
182 B
HTML
<script>
|
|
export let a = 1;
|
|
export let b = 2;
|
|
let c;
|
|
|
|
let count = 0;
|
|
|
|
$: {
|
|
c = a + b;
|
|
count = count + 1;
|
|
}
|
|
</script>
|
|
|
|
<p>{a} + {b} = {c}</p>
|
|
<p>Times calculated: {count}</p> |