README.adoc: "normand" -> "Normand"
[normand.git] / tests / pass-macro-exp-nest.nt
CommitLineData
320644e2
PP
1!m meow_mix(count)
2 "meow " * count "mix"
3!end
4
5!m doit(cond, true_count, false_count)
6 !if cond
7 m:meow_mix(true_count)
8 !end
9
10 !if {not cond}
11 m:meow_mix(false_count)
12 !end
13!end
14
15!m stein(cond)
16 m:doit(cond, 3, 4)
17!end
18
19{cond = 1} m:stein(cond) " " {cond = 0} m:stein(cond)
20---
216d 65 6f 77 20
226d 65 6f 77 20
236d 65 6f 77 20
246d 69 78
2520
26
276d 65 6f 77 20
286d 65 6f 77 20
296d 65 6f 77 20
306d 65 6f 77 20
316d 69 78
This page took 0.023142 seconds and 4 git commands to generate.