Last active
August 10, 2018 18:07
-
-
Save binford2k/36cb07bc7b17fcd2fa1f9e0c512a92e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class first { | |
notify { 'first': } | |
} | |
class outside { | |
include floater # this class is uncontained, so it will "float" outside the graph | |
} | |
class floater { | |
notify { 'floater': } | |
} | |
include first | |
include outside | |
Class['first'] -> Class['outside'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment