Factor out log directory calculation code, in preparation for changing how it works
[hcoop/domtool2.git] / tests / test.dtl
CommitLineData
234b917a
AC
1extern val tweak : int -> [Root];
2
3extern val tickle : string -> A => Root;
4extern val tackle : [A];
5extern val twitch : int -> [A];
27d9de59 6
234b917a
AC
7tweak 42;
8Choice = 19;
9tickle "yourself" with
10 tackle;
11 tackle;
12 choice <- Choice;
13 twitch choice
14end