ryepup/c4-lab

View on GitHub
src/core/samples/edge-from-child-to-child.sexp

Summary

Maintainability
Test Coverage
(def-system ("A") 
  (def-container ("a")
    (edge :to "B"))
  (def-container ("b")
    (edge :to "./a")))

(def-system ("B") 
  (def-container ("a")))