sudoblockio / tackle

Tackle is a programmable configuration language for building modular utilities, code generators, and CLIs with schema validation baked in.
Apache License 2.0
52 stars 2 forks source link

Allow extends to be a list #162

Open robcxyz opened 1 year ago

robcxyz commented 1 year ago

Should allow this


greeter_base1<-:
  words:
    - hello
    - dude

greeter_base2<-:
  words:
    - hello
    - world

greeter_exec<-:
  extends:
    - greeter_base1
    - greeter_base2
  exec:
    p->: var {{item}} --for words
  return: p

t->: greeter_exec