github.com/swaros/contxt/module/runner@v0.0.0-20240305083542-3dbd4436ac40/testdata/projects01/dangerduck/varia/imp/hello.txt (about)

     1  {{ range $key, $User := .user }}
     2        Hello {{ $User.name }} !
     3  
     4        we have to talk about your age {{ $User.age }}.
     5        
     6        as you know you have {{ len $User.cars }} different car models.
     7        so we have to talk about them.
     8         
     9      {{ range $kn, $Cars := $User.cars }}
    10        Number: {{ $kn }} is {{ $Cars.name }}" and from them you have 
    11        {{- range $km, $Car := $Cars.models }}
    12              {{ $Cars.name }} {{ $Car }}
    13        {{- end }}
    14      {{ end }}
    15      -------------------------------------------------------------
    16  {{ end }}