Full regeneration
[hcoop/domtool2.git] / tests / test.dtl
... / ...
CommitLineData
1extern val tweak : int -> [Root];
2
3extern val tickle : string -> A => Root;
4extern val tackle : [A];
5extern val twitch : int -> [A];
6
7tweak 42;
8Choice = 19;
9tickle "yourself" with
10 tackle;
11 tackle;
12 choice <- Choice;
13 twitch choice
14end