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

Support splat syntax for args / kwargs #149

Open robcxyz opened 1 year ago

robcxyz commented 1 year ago

Would be good to support splat syntax.

class<-: 
  foo: str 

inputs: 
  foo: bar 

1->: "{{class(*inputs)}}"   
2->: class *inputs 

1 is supported already. 2 is not.