can I get some advice around using infix in-conjun...
# dsl
d
can I get some advice around using infix in-conjunction with your DSLs? Where I am trying to get to:
Copy code
spot {
      buoy = postion { ... }
      tide = position { ... }
      preferences = prefer { ... }
   } insert into database
Where I have got to:
Copy code
spot {
      buoy = postion { ... }
      tide = position { ... }
      preferences = prefer { ... }

      insert(spot, into(database))
   }