1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Hand-written stand-in for the output of `zdc build examples/hello.zd`.
//
// The code generator does not exist yet. This file is what it must emit,
// written by hand so the runtime can be verified first — if the runtime is
// wrong, no amount of correct codegen will render anything.
//
// Source:
//
// state name is client Text starting "world"
//
// view
// Column
// Heading "Hello, ZDeceptron"
// Input name, hint is "your name"
// Text name
import from '../signal.js';
import from '../dom.js';
import from '../elements.js';
// `state name is client Text starting "world"`
// A client source signal compiles to a [read, write] pair.
const name = ;
export